main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}

Answer Posted / shital

ans is :32

Is This Answer Correct ?    23 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the priority queues?

606


Is printf a keyword?

742


Which is better malloc or calloc?

638


How can a string be converted to a number?

500


What is main function in c?

535






What is the auto keyword good for?

610


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

1941


What is identifier in c?

533


How can I remove the trailing spaces from a string?

598


a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above

848


Is c easy to learn?

548


What is the difference between text files and binary files?

661


What is array of structure in c?

580


What is the code in while loop that returns the output of given code?

1269


How can I do graphics in c?

582