Compare commits
5 Commits
2025-examp
...
a2d1364b09
| Author | SHA1 | Date | |
|---|---|---|---|
| a2d1364b09 | |||
| 8585123ed1 | |||
| 59bf2ec15f | |||
| 19720d5156 | |||
| b517e2d4c7 |
12
ChangeLog
12
ChangeLog
@@ -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>
|
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.
|
* 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
7
c-basic/foo.c
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include "foo.h"
|
||||||
|
|
||||||
|
int foo() {
|
||||||
|
printf("I am foo\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
6
c-basic/foo.h
Normal file
6
c-basic/foo.h
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#ifndef FOO_H
|
||||||
|
#define FOO_H
|
||||||
|
|
||||||
|
int foo();
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -1,10 +1,11 @@
|
|||||||
#include <stdio.h>
|
#include "myprint.h"
|
||||||
#include "hex_read_scanf.h"
|
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
|
||||||
hex_scan();
|
myprint();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
13
c-basic/myprint.c
Normal file
13
c-basic/myprint.c
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include "myprint.h"
|
||||||
|
|
||||||
|
int myprint() {
|
||||||
|
|
||||||
|
int a = 10, b = 20;
|
||||||
|
|
||||||
|
printf("a = %d, b = %d\n", a, b);
|
||||||
|
printf("a = %d, b = %d\n", b, a);
|
||||||
|
printf("%d%d\n", a, b);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
6
c-basic/myprint.h
Normal file
6
c-basic/myprint.h
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#ifndef MYPRINT_H
|
||||||
|
#define MYPRINT_H
|
||||||
|
|
||||||
|
int myprint();
|
||||||
|
|
||||||
|
#endif
|
||||||
Reference in New Issue
Block a user