hello world

This commit is contained in:
Rushil Umaretiya 2024-01-16 15:39:51 -05:00
parent be1129ccd2
commit 9e38efc496
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
2 changed files with 11 additions and 0 deletions

BIN
0-hello-world/hello Executable file

Binary file not shown.

11
0-hello-world/hello.c Normal file
View File

@ -0,0 +1,11 @@
// 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;
}