Difference between revisions of "Hello World in C"
From eLinux.org
| Line 1: | Line 1: | ||
| − | < | + | {{#source: c| |
| + | #include <stdio.h> | ||
| − | + | main() | |
| − | + | { | |
| − | + | for(;;) | |
| + | { | ||
| + | printf ("Hello World!\n"); | ||
| + | } | ||
| + | } | ||
| − | + | ||
| + | |||
| + | }} | ||
Revision as of 19:37, 26 March 2010
{{#source: c|
- include <stdio.h>
main() {
for(;;)
{
printf ("Hello World!\n");
}
}
}}