mirror of
https://github.com/Comp211-SP24/lab-00-Rushilwiz.git
synced 2025-04-17 17:40:19 -04:00
11 lines
195 B
C
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;
|
|
} |