c değeri yazdırıldı

This commit is contained in:
Mert Gör
2024-08-10 17:50:31 +03:00
parent 201f2d1fb6
commit 3420937d57
2 changed files with 12 additions and 0 deletions

View 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);
}