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

Answer Posted / guest

5,3,7

Is This Answer Correct ?    4 Yes 17 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What’s a signal? Explain what do I use signals for?

625


What does the && operator do in a program code?

716


Can we assign string to char pointer?

607


Is Exception handling possible in c language?

1597


Do variables need to be initialized?

631






What happens if header file is included twice?

674


Differentiate abs() function from fabs() function.

620


What is logical error?

616


Which is the best website to learn c programming?

600


What is an identifier?

640


What are register variables in c?

591


How can I direct output to the printer?

837


Where are local variables stored in c?

587


how to count no of words,characters,lines in a paragraph.

3922


write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.

2466