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 output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is c system32 taskhostw exe?
What is getch?
Process by which one bit pattern in to another by bit wise operation is?
Write a program to show the change in position of a cursor using c
I heard that you have to include stdio.h before calling printf. Why?
Explain the binary height balanced tree?
What are 'near' and 'far' pointers?
What are the 4 data types?
What is the difference between new and malloc functions?
What does %c do in c?
Explain what are header files and explain what are its uses in c programming?
Can you write a programmer for FACTORIAL using recursion?
What is the difference between #include and #include 'file' ?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above