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
Is c# a good language?
Explain what are the different file extensions involved when programming in c?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What is the method to save data in stack data structure type?
What is sizeof c?
How do I send escape sequences to control a terminal or other device?
Is register a keyword in c?
Why is python slower than c?
What is calloc malloc realloc in c?
What is logical error?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
How can I open a file so that other programs can update it at the same time?
Why c is known as a mother language?
a c code by using memory allocation for add ,multiply of sprase matrixes
Why can arithmetic operations not be performed on void pointers?