Add files via upload

This commit is contained in:
Venky-234
2023-12-21 21:54:02 +05:30
committed by GitHub
parent 11663e4c20
commit fd60ec2ab3
2 changed files with 53 additions and 0 deletions

16
tutorial1.c Normal file
View File

@@ -0,0 +1,16 @@
// tutorial 1 : simple hello world
// write comments like this
/*
or you could write comments like this too
*/
#include<stdio.h>
int main(){
printf("hello world\n");
printf("byee world\n");
// "\n" is a newline character
return 0;
}
// HAPPY CODING !!!