Commit graph

186 commits

Author SHA1 Message Date
a662d6ba8b
printf fonksiyonundaki format karakterleri scanf fonksiyonunda klavyeden girişi belirlemektedir. Yani örneğin biz
All checks were successful
ci/woodpecker/push/build Pipeline was successful
pir int değeri printf ile %x kullanarak yazdırırsak bu değer 16'lık sistemde ekrana yazdırılır. Fakat bir int değeri
scanf ile %x ile okumak istersek klavyeden yaptığımız girişin 16'lık sistemde olduğu kabul edilir. Örneğin:
main()
{
int a, b;
printf("Bir sayi giriniz : ");
scanf("%x", &a);
printf("a = %d\n", a);
}
2025-06-18 07:37:20 +03:00
45f7da58f9
hex read scanf
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2025-06-18 07:35:11 +03:00
1216bc4a03
sayfa 21 scanf iki sayı örneği
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2025-06-17 21:25:54 +03:00
2b78953677
scan two numbers example
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2025-06-17 13:26:59 +03:00
76f38856ff
scanf example written
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2025-06-17 13:20:20 +03:00
dc07b91a12
printf example rewritten
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2025-06-17 13:10:20 +03:00
bde2e44f89
a better hello example implemented
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2025-06-16 21:32:07 +03:00
01b39949c2
hello.c included in main.c and compiled successfully
Some checks failed
ci/woodpecker/push/build Pipeline failed
2025-06-16 21:23:44 +03:00
3ef17fb5ca
gitignore update Changelog update
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2025-06-16 20:59:08 +03:00
Mert Gör
2e65bff62c
C notları eklendi
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2025-06-07 22:23:25 +03:00
Mert Gör
aee4fac48d
GCC GNU PSD
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2025-05-20 11:15:53 +03:00
Mert Gör
7e3fed1bd5
hex_scan code back
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2025-04-12 23:13:13 +03:00
Mert Gör
56fa9fee35
make clean
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2025-04-12 22:59:25 +03:00
Mert Gör
92130c44dc
hello with make
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/manual/build Pipeline was successful
2025-04-12 22:58:04 +03:00
Mert Gör
97d77a3ff6
changed code removed main from each file
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/manual/build Pipeline was successful
2025-04-12 22:53:01 +03:00
Mert Gör
9a2eabf5cf
new makefile fix
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/manual/build Pipeline failed
2025-04-12 22:37:32 +03:00
Mert Gör
11abe9c6c7
new makefile
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/manual/build Pipeline failed
2025-04-12 22:35:42 +03:00
Mert Gör
d6283d31cd
new file = main.c and modified hex_read_scanf.c removed main from hex_read_scanf.c
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/manual/build Pipeline failed
2025-04-12 22:29:04 +03:00
Mert Gör
0bb57da7ec
first code
Some checks failed
ci/woodpecker/push/build Pipeline failed
2025-04-12 22:12:51 +03:00
Mert Gör
79f83aa190
int main() {
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/manual/build Pipeline failed
unsigned int a; // Change 'int' to 'unsigned int'

    printf("Enter your number: ");
    scanf("%x", &a); // Now 'a' matches '%x' expected type
    printf("a = %u\n", a); // Use '%u' to correctly print an unsigned int

    return 0;
}
2025-04-12 22:09:27 +03:00
Mert Gör
523764a45c
fixed makefile
Some checks failed
ci/woodpecker/push/build Pipeline failed
2025-04-12 22:07:23 +03:00
Mert Gör
119632d026
make file test
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/manual/build Pipeline failed
2025-04-12 22:06:03 +03:00
Mert Gör
84c1aa6a02
changed code to the older version
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/manual/build Pipeline failed
2025-04-12 22:02:46 +03:00
Mert Gör
c788fa919f
unsigned int fix
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/manual/build Pipeline failed
2025-04-12 21:58:40 +03:00
Mert Gör
70b12c1d28
trying to understand and fix the issue hex read scanf
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/manual/build Pipeline failed
2025-04-12 21:56:49 +03:00
Mert Gör
391e29cbfd
test for ci/cd
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/manual/build Pipeline failed
2025-04-12 21:51:02 +03:00
Mert Gör
da1d77758a
Float and Double changed the name 2025-04-12 21:41:00 +03:00
Mert Gör
7b90c42e43
double and float 2025-04-12 21:39:46 +03:00
Mert Gör
2255d2f5ca
printf fonksiyonunda hem float hem de double türleri %f ile yazdırılır. Ancak scanf fonksiyonunda float %f ile,
double %lf ile okunur. Örneğin: sayfa 21
2025-03-21 13:11:44 +03:00
Mert Gör
ffca2a7d25
hex read scanf example 2025-03-21 13:10:07 +03:00
Mert Gör
dcf7552add
ChangeLog update 2025-03-18 14:41:21 +03:00
Mert Gör
9ad88016bb
scanf two numbers 2025-03-18 14:39:40 +03:00
Mert Gör
1d24d8b71c
scanf example 2025-03-18 14:29:06 +03:00
Mert Gör
6b0ac54b46
print examples 2025-03-18 14:21:16 +03:00
Mert Gör
c55c2c7c8b
print example 2025-03-18 14:12:50 +03:00
Mert Gör
f202be858b
foo example 2025-03-18 14:06:43 +03:00
Mert Gör
b8f22cf5bd
toplama örneği 2025-03-18 14:02:23 +03:00
Mert Gör
9ff74b5bf4
hello world example / 2025 examples 2025-03-18 13:58:35 +03:00
Mert Gör
6de7b78d91
2025-examples 2025-03-18 13:39:41 +03:00
Mert Gör
2f5bfce82f
Sistem Programlama Özet notlar ve Örnekler 2025-03-08 04:01:21 +03:00
Mert Gör
f8140136e7
Hızlıca incelendi sayfa 126 UNIX/Linux ders 4 2025-03-08 03:52:18 +03:00
Mert Gör
883387a710
Hızlıca incelendi 353. sayfa 2025-03-08 03:25:14 +03:00
Mert Gör
0f9fce57ae
Linux Çekirdeğine Temel Bakış sayfa 309 2025-03-08 03:22:00 +03:00
Mert Gör
bd99d6a18d
Paket Analiz Kütüphaneleri sayfa 284 2025-03-08 03:18:37 +03:00
Mert Gör
0da5a3dc75
HTML ve CSS Hakkında Kısa Bilgi sayfa 267 2025-03-08 03:14:52 +03:00
Mert Gör
d1c087d834
IP Ailesinin Uygulama Katmanına İlişkin Önemli Protokolleri sayfa 253 2025-03-08 03:12:18 +03:00
Mert Gör
08f5230562
Çalıştırılabilen Dosya Formatları (Executable File Formats) sayfa 218 2025-03-08 03:08:18 +03:00
Mert Gör
1773ba1238
C ve C++’ta Multibyte ve Wide Karakter Kullanımı sayfa 184 2025-03-08 03:03:29 +03:00
Mert Gör
1d58f95c30
Temel SQL Komutları sayfa 159 2025-03-08 02:59:30 +03:00
Mert Gör
5b319d9546
3.9.3. CSD Dilinin Grameri sayfa 135 2025-03-08 02:55:41 +03:00