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 / ajay lakhara
a)comp error
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Is null valid for pointers to functions?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What are data structures in c and how to use them?
Describe wild pointers in c?
Is there any data type in c with variable size?
Explain what is the difference between a free-standing and a hosted environment?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
How can a string be converted to a number?
What are the __date__ and __time__ preprocessor commands?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
What are pointers really good for, anyway?
Write a program to print ASCII code for a given digit.
What is sizeof return in c?
Why is sprintf unsafe?
What is a null pointer in c?