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


Please Help Members By Posting Answers For Below Questions

What is structure and union in c?

601


What is the significance of c program algorithms?

682


How we can insert comments in a c program?

632


What is #include stdio h?

685


Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?

601






printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

636


What are enums in c?

659


What is a function in c?

571


What is string length in c?

612


What are c preprocessors?

678


Write a program to know whether the input number is an armstrong number.

673


Why are algorithms important in c program?

620


How can I remove the leading spaces from a string?

634


any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above

659


Where in memory are my variables stored?

637