main()
{
int a=5;
printf(?%d,%d,%d\n?,a,a< <2,a>>2);
}
Answer: 5,20,1 please explain this code in detail
Answer Posted / ganeshuit
hey please tell me why there is ? sign in printf().and what
is use of it?
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What's the total generic pointer type?
What is array within structure?
What is include directive in c?
What is malloc and calloc?
explain how do you use macro?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is a union?
What is the argument of a function in c?
Where is c used?
What is static memory allocation? Explain
Is there a way to jump out of a function or functions?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What are c preprocessors?
how do you execute a c program in unix.
What is the use of gets and puts?