what will be the output of" printf("%d%d",scanf("%d%
d",&a&b));"
Answer Posted / bhavani
=>output will be:2,whatever you enter value for a.
=>because scanf is a library fn which will return how many
arguements it processes, and first value
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Why c is faster than c++?
What is static volatile in c?
How to write c functions that modify head pointer of a linked list?
How can I copy just a portion of a string?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Why we use stdio h in c?
#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??
Between macros and functions,which is better to use and why?
Explain the use of function toupper() with and example code?
What does #pragma once mean?
What is bubble sort in c?
What is modeling?
What are the disadvantages of external storage class?
How can I read/write structures from/to data files?
How does placing some code lines between the comment symbol help in debugging the code?