hello world example & ChangeLog update

This commit is contained in:
Mert Gör
2024-06-30 15:02:33 +03:00
parent 426b371dbb
commit 830d22fa97
2 changed files with 10 additions and 0 deletions

6
c-basic/helloworld.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main(){
printf("hello world in C Programming Language\n");
return 0;
}