2025-06-17 13:20:20 +03:00
|
|
|
#include "scanf_example.h"
|
2025-03-18 14:29:06 +03:00
|
|
|
|
2025-04-12 22:53:01 +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;
|
|
|
|
}
|