c değeri yazdırıldı
This commit is contained in:
parent
201f2d1fb6
commit
3420937d57
2 changed files with 12 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
2024-08-10 hwpplayer1 <hwpplayer1@debian>
|
||||
|
||||
* c-basic/writing_value_with_printf_2.c (main): c değeri yazdrıldı
|
||||
|
||||
* c-basic/klavyeden_okuma_scanf_2.c (main): scanf 2 sayfa 20/21
|
||||
|
||||
* c-basic/klavyeden_okuma_scanf.c (main): scanf Fonksiyonuyla Klavyeden Okuma Yapılması sayfa 20
|
||||
|
|
10
c-basic/writing_value_with_printf_2.c
Normal file
10
c-basic/writing_value_with_printf_2.c
Normal file
|
@ -0,0 +1,10 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
int a = 10, b = 20, c = 30;
|
||||
|
||||
printf("a = %d, b = %d\n", a, b);
|
||||
printf("a = %d, b = %d\n", c, a);
|
||||
printf("%d%d\n", a, b);
|
||||
}
|
Loading…
Reference in a new issue