main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Answer Posted / mannucse
5
20
5
| Is This Answer Correct ? | 1 Yes | 10 No |
Post New Answer View All Answers
Is anything faster than c?
Why is %d used in c?
How do you determine the length of a string value that was stored in a variable?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is strcmp in c?
What does sizeof int return?
What is the symbol indicated the c-preprocessor?
Combinations of fibanocci prime series
What is pragma in c?
Explain what are linked list?
How can I convert a number to a string?
Can I initialize unions?
When should structures be passed by values or by references?
What is a shell structure examples?
What is the difference between break and continue?