c-course/c-basic/scanf_example.c

13 lines
156 B
C
Raw Normal View History

2025-06-17 13:20:20 +03:00
#include "scanf_example.h"
2025-03-18 14:29:06 +03:00
int my_scan()
2025-03-18 14:29:06 +03:00
{
int a;
printf("enter the a number:");
scanf("%d", &a);
printf("a number is : %d\n", a);
return 0;
}