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

What is a structure and why it is used?

630


Tell us something about keyword 'auto'.

676


1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if

3987


Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor

3003


What are the header files used in c language?

599






Explain what are compound statements?

614


main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

925


Why should I prototype a function?

652


How many loops are there in c?

594


What is the difference between array and structure in c?

580


Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.

1578


Ow can I insert or delete a line (or record) in the middle of a file?

583


c program to compute AREA under integral

1827


What is extern storage class in c?

531


What are qualifiers?

623