main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answer Posted / ram
Ans=32
| Is This Answer Correct ? | 273 Yes | 22 No |
Post New Answer View All Answers
What are the c keywords?
What is #include called?
What is the difference between text and binary modes?
Can an array be an Ivalue?
What is && in c programming?
What tq means in chat?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Where does the name "C" come from, anyway?
Explain what is the difference between a free-standing and a hosted environment?
Explain which function in c can be used to append a string to another string?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
Explain setjmp()?
Are the variables argc and argv are local to main?