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
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Explain what does it mean when a pointer is used in an if statement?
How do we make a global variable accessible across files? Explain the extern keyword?
Why is c platform dependent?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What are the different types of data structures in c?
Difference between linking and loading?
How will you divide two numbers in a MACRO?
Differentiate between ordinary variable and pointer in c.
What is abstract data structure in c?
How do I create a directory? How do I remove a directory (and its contents)?
How to write a multi-statement macro?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
What are logical errors and how does it differ from syntax errors?