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) |
m (Add category) |
||
| (One intermediate revision by one user not shown) | |||
| Line 1: | Line 1: | ||
| − | |||
| − | |||
| − | |||
{{#source: c| | {{#source: c| | ||
#include <stdio.h> | #include <stdio.h> | ||
| Line 14: | Line 11: | ||
}} | }} | ||
| + | |||
| + | [[Category:Development Tools]] | ||
Revision as of 22:36, 27 October 2011
{{#source: c|
- include <stdio.h>
main() {
for(;;)
{
printf ("Hello World!\n");
}
}
}}