main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Answer Posted / vishwateja
5,20,1
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is mean by data types in c?
What is meant by inheritance?
How can I read a binary data file properly?
I need a sort of an approximate strcmp routine?
what is different between auto and local static? why should we use local static?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What are derived data types in c?
What does sizeof function do?
Explain that why C is procedural?
Explain about C function prototype?
Explain is it valid to address one element beyond the end of an array?
What is a static function in c?
Define the scope of static variables.