First Commit

This commit is contained in:
2021-04-25 15:28:50 +05:30
commit c3dbda79c4
22 changed files with 138 additions and 0 deletions

5
HelloWorld.c Normal file
View File

@@ -0,0 +1,5 @@
// WAP to print "Hello World!".
void main() {
printf("Hello World! \n");
}