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
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Explain heap and queue.
How can variables be characterized?
What is wrong in this statement?
What is the difference between far and near in c?
What is the use of #include in c?
What is selection sort in c?
Why is c used in embedded systems?
What is the use of printf() and scanf() functions?
What are identifiers in c?
Explain what are the advantages and disadvantages of a heap?
What are Macros? What are its advantages and disadvantages?
Write a program to generate random numbers in c?
Why c is called free form language?
Why structure is used in c?