12 lines
161 B
C
12 lines
161 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
|
||
|
printf ("This is my first computer program\n");
|
||
|
printf ("Hello World\n");
|
||
|
|
||
|
return 0;
|
||
|
|
||
|
}
|