Difference between revisions of "Hello World in C"

From eLinux.org
Jump to: navigation, search
m (Add category)
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
Example source for Hello World in C
 
 
 
 
{{#source: c|
 
{{#source: c|
 
#include <stdio.h>
 
#include <stdio.h>
Line 14: Line 11:
  
 
}}
 
}}
 +
 +
[[Category:Development Tools]]

Revision as of 15:36, 27 October 2011

{{#source: c|

  1. include <stdio.h>

main() {

 for(;;)
     { 
         printf ("Hello World!\n");
     }

}

}}