lab-00-Rushilwiz/0-hello-world/hello.c

12 lines
196 B
C

// PID: 730677144
// I pledge the COMP 211 honor code.
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("Hello, world.\n");
printf("Welcome to C!");
return EXIT_SUCCESS;
}