printf("%d",(printf("Hello")); What it returns?
Answer Posted / aju.b
printf("%d",(printf("Hello")));
Result is Hello5
| Is This Answer Correct ? | 175 Yes | 15 No |
Post New Answer View All Answers
What is build process in c?
What is the size of enum in c?
#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); }
How can I insert or delete a line (or record) in the middle of a file?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What is use of pointer?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is the use of sizeof?
How would you rename a function in C?
What is structure padding and packing in c?
What are lookup tables in c?
Why functions are used in c?
What is the difference between constant pointer and constant variable?
Is main an identifier in c?
State the difference between realloc and free.