main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Answer Posted / padmarao
5 20 1
| Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
What is size of union in c?
Can we declare function inside main?
Explain what are multidimensional arrays?
What is difference between union All statement and Union?
Can i use “int” data type to store the value 32768? Why?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What are the two forms of #include directive?
Explain the advantages and disadvantages of macros.
Explain how can I read and write comma-delimited text?
Why can't I perform arithmetic on a void* pointer?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Dont ansi function prototypes render lint obsolete?
What is void pointers in c?
What is the most efficient way to store flag values?