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
In which layer of the network datastructure format change is done
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Why malloc is faster than calloc?
What is the difference between text and binary i/o?
How do we make a global variable accessible across files? Explain the extern keyword?
What are unions in c?
Explain why C language is procedural?
What is wild pointer in c?
Does * p ++ increment p or what it points to?
How to delete a node from linked list w/o using collectons?
what will be maximum number of comparisons when number of elements are given?
What is the use of header files?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
What are volatile variables in c?
What is the difference between near, far and huge pointers?