main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Answer Posted / rahul
5
20
0
| Is This Answer Correct ? | 1 Yes | 10 No |
Post New Answer View All Answers
How does placing some code lines between the comment symbol help in debugging the code?
What is #define size in c?
Why functions are used in c?
What is volatile variable in c?
Describe the steps to insert data into a singly linked list.
What does struct node * mean?
Can you please explain the difference between strcpy() and memcpy() function?
Why is sprintf unsafe?
Why void main is used in c?
Explain the red-black trees?
How is a null pointer different from a dangling pointer?
What is declaration and definition in c?
What is a null pointer in c?
What is use of pointer?
What is the size of structure in c?