What is the output of following program ?
int
main()
{
int x = 5;
printf("%d %d %d\n", x, x << 2, x >> 2);
}
Answer Posted / qint
5 20 1
| Is This Answer Correct ? | 72 Yes | 6 No |
Post New Answer View All Answers
What will be your course of action for a push operation?
What is the use of printf() and scanf() functions?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
Tell us two differences between new () and malloc ()?
Explain how can I convert a string to a number?
Why do we use int main instead of void main in c?
how to build a exercise findig min number of e heap with list imlemented?
How do we open a binary file in Read/Write mode in C?
What is c programming structure?
What is the meaning of && in c?
How was c created?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What is the heap in c?
Do you know the use of 'auto' keyword?
When should the volatile modifier be used?