main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / kamalg
5 20 1
| Is This Answer Correct ? | 16 Yes | 2 No |
Post New Answer View All Answers
What is operator promotion?
please give me some tips for the placement in the TCS.
How do I use void main?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
Define Spanning-Tree Protocol (STP)
What are global variables and how do you declare them?
how to create duplicate link list using C???
Why is it that not all header files are declared in every C program?
List some of the dynamic data structures in C?
Difference between pass by reference and pass by value?
Which is better between malloc and calloc?
How can I list all of the predefined identifiers?
Why is not a pointer null after calling free?
Explain null pointer.
write a program in c language to print your bio-data on the screen by using functions.