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
write a program to create a sparse matrix using dynamic memory allocation.
What are static variables in c?
What is a good way to implement complex numbers in c?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Describe the order of precedence with regards to operators in C.
What is getch() function?
How can I copy just a portion of a string?
What is bubble sort technique in c?
How can a number be converted to a string?
#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??
Explain the properties of union.
Linked lists -- can you tell me how to check whether a linked list is circular?
Explain how can I manipulate strings of multibyte characters?
Explain is it better to bitshift a value than to multiply by 2?
What is the meaning of c in c language?