13 lines
145 B
C
13 lines
145 B
C
![]() |
#include <stdio.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int a;
|
||
|
|
||
|
printf("enter the a number:");
|
||
|
scanf("%d", &a);
|
||
|
printf("a number is : %d\n", a);
|
||
|
|
||
|
return 0;
|
||
|
}
|