main()
{
int i;
printf("%d",scanf"%d",&i))//if the input is 12 24 34 then
wat will be the output
}
Answer Posted / babu ba
1
bcoz it counts number of time the scanf fun access the user I/Ps
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What are integer variable, floating-point variable and character variable?
Whats s or c mean?
Can you think of a logic behind the game minesweeper.
Explain About fork()?
how to find anagram without using string functions using only loops in c programming
How can you allocate arrays or structures bigger than 64K?
What is a method in c?
What is void main ()?
What is string function in c?
Where define directive used?
What is the use of sizeof?
where are auto variables stored? What are the characteristics of an auto variable?
What is the use of bitwise operator?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the difference between array and pointer in c?