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

Answer Posted / vignesh1988i

the answer is 0 0 0 ...

thank u

Is This Answer Correct ?    1 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

The difference between printf and fprintf is ?

719


What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25

1492


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

3979


What is the purpose of macro in C language?

659


What are header files and what are its uses in C programming?

629






What is a good data structure to use for storing lines of text?

592


please explain every phase in the "SDLC" in the dotnet.

2177


Explain what standard functions are available to manipulate strings?

610


Who invented bcpl language?

703


How can I recover the file name given an open stream or file descriptor?

593


Explain how can you be sure that a program follows the ansi c standard?

859


Is it possible to pass an entire structure to functions?

552


Differentiate between the expression “++a” and “a++”?

699


what is a constant pointer in C

676


What's the best way of making my program efficient?

625