feat(assign1): add basic "Hello World" program
This commit is contained in:
parent
95cd73423a
commit
0122c877ac
4 changed files with 33 additions and 2 deletions
8
assign1/c-programs/hello.c
Normal file
8
assign1/c-programs/hello.c
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("Welcome to OwlTech Industries!\n");
|
||||
printf("Systems Programming Division\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue