main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}

Answers were Sorted based on User's Feedback



main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } ..

Answer / guest

5,3,7

Is This Answer Correct ?    4 Yes 17 No

Post New Answer

More C Interview Questions

What do you understand by friend-functions? How are they used?

0 Answers   iNautix,


What is meant by inheritance?

0 Answers  


Are pointers integer?

0 Answers  


How Many Header Files in c?

2 Answers   TCS,


The statement, int(*x[]) () what does in indicate?

0 Answers  






#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??

0 Answers  


write a program to count the no of repaeted words in a line?

1 Answers  


I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.

1 Answers  


12344321 123 321 12 21 1 1 how i print this program??

5 Answers   DSR Management, Winit,


write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..

1 Answers  


What is #pragma statements?

0 Answers  


wap to print "hello world" without using the main function.

22 Answers   TCS, Wipro,


Categories