4)What would be the output?
main()
{
int num=425;
pf("%d",pf("%d",num));
}
a)Comp error
b)4425
c)4253
d)3435
e)none
Answer Posted / gouse mohiddin
4253
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is wrong with this statement? Myname = 'robin';
What is a nested loop?
What is difference between structure and union?
What is the difference between text and binary modes?
Explain what are compound statements?
What should malloc(0) do?
Is malloc memset faster than calloc?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
Why is structure important for a child?
Are the variables argc and argv are always local to main?
What are static variables in c?
What is pragma c?
Which is more efficient, a switch statement or an if else chain?
Write program to remove duplicate in an array?
What are register variables? What are the advantage of using register variables?