scanf two numbers

This commit is contained in:
Mert Gör 🇹🇷 2025-03-18 14:39:40 +03:00
parent 1d24d8b71c
commit 9ad88016bb
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F

View File

@ -0,0 +1,13 @@
#include <stdio.h>
int main()
{
int a, b;
printf("enter two numbers:");
scanf("%d%d", &a, &b);
printf("a = %d, b = %d\n", a, b);
return 0;
}