What is the output of following program ?
int
main()
{
int x = 5;
printf("%d %d %d\n", x, x << 2, x >> 2);
}
Answer Posted / sudhir prasad
5 20 1 is correct answer
| Is This Answer Correct ? | 21 Yes | 3 No |
Post New Answer View All Answers
What is identifier in c?
What is the usage of the pointer in c?
What is the best style for code layout in c?
Multiply an Integer Number by 2 Without Using Multiplication Operator
What language is lisp written in?
How can you find out how much memory is available?
List a few unconditional control statement in c.
How important is structure in life?
Describe how arrays can be passed to a user defined function
Why dont c comments nest?
What is zero based addressing?
What is uint8 in c?
What are pointers? What are different types of pointers?
What is meant by high-order and low-order bytes?
Is c pass by value or reference?