what is the output of
printf("%d",(scanf("%d",10));
Answer Posted / kamal
scanf() returns integer value for number sucessful entry taken.
Due to this cause of taking integer value at address 10 it
will print 1 otherwise 0;
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
What are the advantages and disadvantages of pointers?
Is sizeof a keyword in c?
How #define works?
what is a constant pointer in C
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What is hash table in c?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Explain what is a program flowchart and explain how does it help in writing a program?
What is #define used for in c?
Explain what is the general form of a c program?
What is array in c with example?
What does %d do in c?
What's a good way to check for "close enough" floating-point equality?
Why doesnt this code work?