Difference between revisions of "Hello World in C"
From eLinux.org
(Created page with '<syntaxhighlight lang="php"> <?php $v = "string"; // sample initialization ?> html text <? echo $v; // end of php code ?> </syntaxhighlight>') |
m (Add category) |
||
| (6 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
| − | < | + | {{#source: c| |
| − | + | #include <stdio.h> | |
| − | + | ||
| − | + | main() | |
| − | + | { | |
| − | + | for(;;) | |
| − | + | { | |
| − | + | printf ("Hello World!\n"); | |
| − | + | } | |
| + | } | ||
| + | |||
| + | }} | ||
| + | |||
| + | [[Category:Development Tools]] | ||
Revision as of 22:36, 27 October 2011
{{#source: c|
- include <stdio.h>
main() {
for(;;)
{
printf ("Hello World!\n");
}
}
}}