c-course/c-basic/klavyeden_okuma_scanf.c

13 lines
144 B
C
Raw Normal View History

2024-08-10 15:56:41 +03:00
#include <stdio.h>
int main()
{
int a;
printf("enter a number:");
scanf("%d", &a);
printf("Your number is : %d\n", a);
return 0;
}