Skip to content

Instantly share code, notes, and snippets.

@vndmtrx
Created March 6, 2013 22:56
Show Gist options
  • Select an option

  • Save vndmtrx/5103974 to your computer and use it in GitHub Desktop.

Select an option

Save vndmtrx/5103974 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
void main(void)
{
char *message[] = {"Hello, ", "world."};
int i;
for(i = 0; i < 2; ++i)
printf("%s", message[i]);
printf("\n");
return EXIT_SUCCESS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment