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 n in c?
How can you find the exact size of a data type in c?
What Is The Difference Between Null And Void Pointer?
Why do we use int main instead of void main in c?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What is a loop?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What are derived data types in c?
Write a program to reverse a given number in c language?
explain what is fifo?
where are auto variables stored? What are the characteristics of an auto variable?
What is static volatile in c?
Is it possible to have a function as a parameter in another function?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
How many types of functions are there in c?