Question:What will be output when you will execute following c code?
#include<stdio.h>
void main(){
    switch(5||2|1){
        case 3&2:printf("Anatomy of a Murder");
              break;
        case -~11:printf("Planet of Apes");
               break;
        case 6-3<<2:printf("The conversation");
               break;
    case 5>=5:printf("Shaun of the Dead");
     } 
}
Choose all that apply: 

A Anatomy of a Murder 

B Planet of Apes 

C The conversation 

D Shaun of the Dead 

E Compilation error 

+ Answer
+ Explanation
+ Report
Total Preview: 938

Copyright © 2024. Powered by Intellect Software Ltd