main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Answer Posted / hemanth
5
10
2
| Is This Answer Correct ? | 0 Yes | 11 No |
Post New Answer View All Answers
What are near, far and huge pointers?
What is the difference between typedef struct and struct?
What is this infamous null pointer, anyway?
What is keyword in c?
What is c language used for?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Why we write conio h in c?
Why is %d used in c?
What is difference between constant pointer and constant variable?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
What is the heap in c?
What is difference between union All statement and Union?
Why we use stdio h in c?
Difference between Shallow copy and Deep copy?
What is a static function in c?