Difference between revisions of "Hello World in C"
From eLinux.org
m (moved Mytestpage to Hello World in C: dual purpose page for testing syntax highlighting and add a basic hello world in c for reference) |
Revision as of 19:39, 26 March 2010
Example source for Hello World in C
{{#source: c|
- include <stdio.h>
main() {
for(;;)
{
printf ("Hello World!\n");
}
}
}}