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

Difference between macros and inline functions? Can a function be forced as inline?

693


Is r written in c?

716


Can a variable be both static and volatile in c?

596


What do you mean by a local block?

618


Linked list is a Linear or non linear explain if linear how it working as a non linear data structures

1752






WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..

1579


How can I write a function that takes a format string and a variable number of arguments?

594


Explain what is meant by high-order and low-order bytes?

625


What is || operator and how does it function in a program?

618


What is table lookup in c?

616


count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

666


What is pointers in c?

637


What are the features of c language?

611


What is the significance of an algorithm to C programming?

582


What are the advantages of c preprocessor?

699