A
Q. What will be the output of this code?
Code:
void main()
{
int i;
printf("%d", scanf("%d", &i)); // value 10 is given as input here
}
{
int i;
printf("%d", scanf("%d", &i)); // value 10 is given as input here
}
- Correct Answer - Option(B)
- Views: 21
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.