main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / mukul
5,10,2
| Is This Answer Correct ? | 3 Yes | 11 No |
Post New Answer View All Answers
What is s or c?
Define Array of pointers.
difference between object file and executable file
How is null defined in c?
How would you rename a function in C?
How can I manipulate individual bits?
Is c language still used?
Explain how can I remove the trailing spaces from a string?
List some of the static data structures in C?
How many keywords (reserve words) are in c?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
p*=(++q)++*--p when p=q=1 while(q<=6)
Explain indirection?
How do I use strcmp?
Why we use stdio h in c?