Skip to content

Instantly share code, notes, and snippets.

@rummelonp
Created January 25, 2011 04:19
Show Gist options
  • Save rummelonp/794502 to your computer and use it in GitHub Desktop.
Save rummelonp/794502 to your computer and use it in GitHub Desktop.
C言語で"Hello, World!"
// $ gcc -o hello hello.c
// $ ./hello
#include <stdio.h>
int main(void)
{
printf("Hello, World!\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment