cs240/labs/lab1/hello.c

6 lines
62 B
C
Raw Normal View History

2018-10-15 17:20:57 -04:00
#include <stdio.h>
int main() {
printf("Hello, Max!\n");
}