Files
MMME3085_Lab_1/LC4/hello_world.c
2022-04-07 16:58:01 +01:00

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
}