2012-09-03 C: Hello World Hello world program written in C File: hello.c ------------- #include <stdio.h> int main() { puts("Hello World"); return 0; } Run it by: Compile with $ gcc -o hello hello.c execute with $ ./hello Share this: Click to share on X (Opens in new window) X Click to share on Facebook (Opens in new window) Facebook Like Loading... Related Standard