main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / vignesh1998i
oh oh , sorry , i didnt see the value of x is 5....
4 4 1
than k u
| Is This Answer Correct ? | 1 Yes | 11 No |
Post New Answer View All Answers
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What are the three constants used in c?
Is main is a keyword in c?
Explain the use of #pragma exit?
What are the advantages of c language?
What are the uses of null pointers?
Does c have an equivalent to pascals with statement?
How are structure passing and returning implemented?
What is NULL pointer?
Subtract Two Number Without Using Subtraction Operator
How do you convert strings to numbers in C?
praagnovation
p*=(++q)++*--p when p=q=1 while(q<=6)
What is the difference between the expression “++a” and “a++”?