mirror of
https://github.com/Comp211-SP24/lab-00-Rushilwiz.git
synced 2025-04-09 22:30:16 -04:00
12 lines
196 B
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;
|
|
}
|