Skip to content

Instantly share code, notes, and snippets.

@avdi
Created May 3, 2012 06:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save avdi/2583715 to your computer and use it in GitHub Desktop.
Save avdi/2583715 to your computer and use it in GitHub Desktop.
C builtins
int main(int argc, char** argv) {
char buff[64];
strcat(buff, "Look ma, ");
strcat(buff, "no #includes!");
printf(buff);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment