main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}

what is the output?

Answer Posted / mannucse

5
20
5

Is This Answer Correct ?    1 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does sizeof function do?

616


What are valid operations on pointers?

670


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

618


What is typedef struct in c?

584


Why clrscr is used after variable declaration?

1041






What is a far pointer in c?

599


What is the difference between strcpy() and memcpy() function in c programming?

628


What are header files and explain what are its uses in c programming?

612


a c code by using memory allocation for add ,multiply of sprase matrixes

2305


Describe wild pointers in c?

640


Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"

1582


What type is sizeof?

587


What is the difference between exit() and _exit() function in c?

584


What is a structural principle?

641


What is a const pointer in c?

670