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

what is the output?

Answer Posted / sanjeev

5
50
1

Is This Answer Correct ?    0 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2

1529


A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.

1252


write a program to create a sparse matrix using dynamic memory allocation.

4373


What is malloc and calloc?

575


What is the general form of a C program?

598






while initialization of array why we use a[][2] why not a[2][]...?

1869


What are loops in c?

551


Why is it that not all header files are declared in every C program?

683


What is the purpose of macro in C language?

662


Is c call by value?

607


How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include...

4905


Differentiate between calloc and malloc.

760


a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion

2334


What is the size of enum in c?

622


In a switch statement, explain what will happen if a break statement is omitted?

639