main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / a. k
20 1 5
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What is the size of enum in c?
Explain what is the difference between a string and an array?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What does %d do in c?
what is the basis for selection of arrays or pointers as data structure in a program
What is a constant and types of constants in c?
How can you be sure that a program follows the ANSI C standard?
If you know then define #pragma?
Is file a keyword in c?
Who is the main contributor in designing the c language after dennis ritchie?
In which language linux is written?
Can we assign string to char pointer?
write a program for the normal snake games find in most of the mobiles.
How can I make sure that my program is the only one accessing a file?
Is exit(status) truly equivalent to returning the same status from main?