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

Explain null pointer.

615


What is masking?

630


Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon

1730


List the difference between a "copy constructor" and a "assignment operator"?

576


What are the types of assignment statements?

624






In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping

974


What is the use of a static variable in c?

587


A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none

726


What is the use of a conditional inclusion statement in C?

594


What are the 5 data types?

596


Differentiate call by value and call by reference?

562


What is difference between structure and union with example?

590


What is the purpose of 'register' keyword?

683


What is function and its example?

621


What is the difference between Printf(..) and sprint(...) ?

779