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) |
|||
| Line 1: | Line 1: | ||
| − | |||
| − | |||
| − | |||
{{#source: c| | {{#source: c| | ||
#include <stdio.h> | #include <stdio.h> | ||
Revision as of 19:41, 26 March 2010
{{#source: c|
- include <stdio.h>
main() {
for(;;)
{
printf ("Hello World!\n");
}
}
}}