printf ve scanf örnekleri

This commit is contained in:
Mert Gör 🇹🇷 2024-08-10 15:56:41 +03:00
parent fa7d2e2d83
commit 75674acbc4
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
3 changed files with 24 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2024-08-10 hwpplayer1 <hwpplayer1@debian>
* c-basic/klavyeden_okuma_scanf.c (main): scanf Fonksiyonuyla Klavyeden Okuma Yapılması sayfa 20
* c-basic/C.pdf: Değişkenlere İlkdeğer Verilmesi (Initialization) sayfa 19
* c-basic/C.pdf: Derleyicilerin Hata Mesajları
Derleyicilerin hata mesajları üçe ayrılmaktadır:

View File

@ -0,0 +1,12 @@
#include <stdio.h>
int main()
{
int a;
printf("enter a number:");
scanf("%d", &a);
printf("Your number is : %d\n", a);
return 0;
}

View File

@ -0,0 +1,10 @@
#include <stdio.h>
int main()
{
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);
}