10 lines
166 B
C
10 lines
166 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main( void )
|
||
|
{
|
||
|
/* My first program in C */
|
||
|
printf ("Hello World \n");
|
||
|
return 0; // Return from prog
|
||
|
}
|