Question:What will be output when you will execute following c code?
#include<stdio.h> void main(){ switch(*(1+"AB" "CD"+1)){ case 'A':printf("Pulp Fiction"); break; case 'B':printf("12 Angry Man"); break; case 'C':printf("Casabance"); break; case 'D':printf("Blood Diamond"); } }Choose all that apply:
A Pulp Fiction
B 12 Angry Man
C Casabance
D Blood Diamond
E Compilation error
+ AnswerC
+ Explanation
+ Report