main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / mukul
5,10,2
| Is This Answer Correct ? | 3 Yes | 11 No |
Post New Answer View All Answers
What are comments and how do you insert it in a C program?
What are the different properties of variable number of arguments?
How many levels of indirection in pointers can you have in a single declaration?
What is #line used for?
Why dont c comments nest?
What is output redirection?
What is malloc() function?
What are the data types present in c?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
Can the size of an array be declared at runtime?
Is it possible to execute code even after the program exits the main() function?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What are linker error?
How can you find the exact size of a data type in c?