Files
MMME3085_Lab_1/Lectures/LC4/hello_world.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
}