what is the output of
printf("%d",(scanf("%d",10));
Answer Posted / ravinder singh rawat
scanf returns nos. of arguments taken by scanf hence it
will ask user to input and if integer is fed as I/P then
printf gives 1 as o/p
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Explain what are the advantages and disadvantages of a heap?
What are the disadvantages of c language?
Explain what is #line used for?
Why clrscr is used in c?
Explain what does a function declared as pascal do differently?
What are the data types present in c?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
which is conditional construct a) if statement b) switch statement c) while/for d) goto
Explain what are multidimensional arrays?
What are the general description for loop statement and available loop types in c?
What is wrong with this initialization?
Is main a keyword in c?
Explain the meaning of keyword 'extern' in a function declaration.
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Where define directive used?