what will be the output of" printf("%d%d",scanf("%d%
d",&a&b));"
Answer Posted / satya
main()
{
int a,b;
printf("%d,%d",scanf("%d%d",&a,&b));
}
=> do u mean above program's output...
=>output will be:2,whatever you enter value for b.
=>because scanf is a library fn which will return how many
arguements it processes, and second value
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
How can I implement sets or arrays of bits?
Explain the ternary tree?
What is a stream water?
What is data structure in c language?
What is structure data type in c?
What is the difference between local variable and global variable in c?
What does 3 periods mean in texting?
Can we declare variables anywhere in c?
Explain the difference between exit() and _exit() function?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is the general form of function in c?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What is the use of #define preprocessor in c?
What are qualifiers in c?
Is c pass by value or reference?