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


Please Help Members By Posting Answers For Below Questions

How will you declare an array of three function pointers where each function receives two ints and returns a float?

773


Explain what is #line used for?

603


What is pragma c?

607


how to find anagram without using string functions using only loops in c programming

2712


main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none

724






What does printf does?

741


What are the functions to open and close file in c language?

723


Explain two-dimensional array.

625


What is function definition in c?

584


When should a type cast be used?

573


In which language linux is written?

597


Write the Program to reverse a string using pointers.

613


Explain how can I write functions that take a variable number of arguments?

608


What is #include called?

565


write a program to generate address labels using structures?

4005