8 Commits

Author SHA1 Message Date
64b5cb88ae foo örneği yazıldı 2025-10-06 23:56:54 +03:00
Mert Gör
dd4d499ae4 update 2025-10-03 08:09:40 +03:00
e7ac62ab1b deleted old examples 2025-10-02 14:46:46 +03:00
a2d1364b09 Nesnelerin İçerisindeki Değerlerin printf Fonksiyonuyla Yazdırılması 2025-08-19 19:41:21 +03:00
8585123ed1 print example 2025-08-19 19:39:53 +03:00
59bf2ec15f I am foo example 2025-08-19 19:28:00 +03:00
19720d5156 starting again, hello code... 2025-08-19 18:50:03 +03:00
b517e2d4c7 Sayı Sistemleri 2025-08-13 05:58:22 +03:00
4 changed files with 27 additions and 4 deletions

View File

@@ -1,3 +1,15 @@
2025-08-19 Mert Gör <hwpplayer1@masscollabs>
* c-basic/CSD-C-Basic-Book/C.pdf: page 19 Nesnelerin İçerisindeki Değerlerin printf Fonksiyonuyla Yazdırılması
* c-basic/main.c (main) : I am foo example written
* c-basic/main.c (main): starting again
2025-08-13 Mert Gör <hwpplayer1@masscollabs>
* c-basic/CSD-C-Basic-Book/C.pdf: Kitap yeniden ele alınmakta CSD dalı sayfa 4 Sayı Sistemleri
2025-07-04 Mert Gör <hwpplayer1@masscollabs>
* c-basic/CSD-C-Basic-Book/C.pdf: Kitabı incelemeye başladım. En kısa sürede tüm kurslar tekrar gözden geçirilecek.

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

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

6
c-basic/foo.h Normal file
View File

@@ -0,0 +1,6 @@
#ifndef FOO_H
#define FOO_H
int foo();
#endif

View File

@@ -1,10 +1,8 @@
#include <stdio.h>
#include "hex_read_scanf.h"
#include "foo.h"
int main() {
hex_scan();
foo();
return 0;
}