Skip to content

Instantly share code, notes, and snippets.

@kellegous
Last active August 29, 2015 14:05
Show Gist options
  • Save kellegous/a391660401edb0f19f5a to your computer and use it in GitHub Desktop.
Save kellegous/a391660401edb0f19f5a to your computer and use it in GitHub Desktop.
#include <unistd.h>
int main() {
const char msg[] = "Hello World\n";
const size_t len = sizeof(msg);
write(STDOUT_FILENO, msg, len);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment