Files
MMME3085_Lab_1/C3/hello_world.c
2022-04-08 16:12:38 +01:00

10 lines
157 B
C

#include <stdlib.h>
#include <stdio.h>
/* My first program */
int main(void)
{
// This is a single line of comment
printf("Hello World");
return 0;
}