main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Answer Posted / vishwateja
5,20,1
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is the difference between array_name and &array_name?
What is the function of multilevel pointer in c?
What is size of union in c?
Why array is used in c?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
Is there any data type in c with variable size?
What is difference between union and structure in c?
Where are c variables stored in memory?
Can you pass an entire structure to functions?
What is character constants?
What is string concatenation in c?
What is the data segment that is followed by c?
How many levels of indirection in pointers can you have in a single declaration?
What does c in a circle mean?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above