Skip to content

Instantly share code, notes, and snippets.

@piscisaureus
Created July 11, 2011 17:28
Show Gist options
  • Save piscisaureus/1076333 to your computer and use it in GitHub Desktop.
Save piscisaureus/1076333 to your computer and use it in GitHub Desktop.
#include <unistd.h>
int main() {
char text1[10] = "abcdefghi";
char text2[10] = "123456789";
write(1, text1, sizeof(text1));
write(1, (char*) &text2, sizeof(text2));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment