Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
char *hello(void) {
	return "hello";
}

int main(void) {
	char* hi = hello();
	printf("%s\n", hi);
	return 0;
}

Offer? 

yeet