Foo example

This commit is contained in:
Mert Gör 🇹🇷 2024-06-30 15:06:03 +03:00
parent 830d22fa97
commit 81e4765792
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
2 changed files with 12 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2024-06-30 hwpplayer1 <hwpplayer1@debian>
* c-basic/foo.c: Foo example
* c-basic/helloworld.c: hello world example
2024-02-19 Mert Gör <mertgor@masscollabs.xyz>

10
c-basic/foo.c Normal file
View File

@ -0,0 +1,10 @@
#include <stdio.h>
int foo(){
printf("I am foo\n");
}
int main(){
foo();
return 0;
}