scanf example

This commit is contained in:
Mert Gör 🇹🇷 2025-03-18 14:29:06 +03:00
parent 6b0ac54b46
commit 1d24d8b71c
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F

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

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