print example

This commit is contained in:
Mert Gör 🇹🇷 2025-03-18 14:12:50 +03:00
parent f202be858b
commit c55c2c7c8b
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F

12
c-basic/print_example.c Normal file
View File

@ -0,0 +1,12 @@
#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);
return 0;
}