lab-00-Rushilwiz/0-hello-world/hello.c
2024-01-16 15:39:51 -05:00

11 lines
195 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;
}