Question:What will be output when you will execute following c code?
#include<stdio.h> void main(){ switch(0X0){ case NULL:printf("Thierry Henry"); break; case '\0':printf("Steven Gerrend"); break; case 0: printf("Kaka"); break; default: printf("Michael Ballack"); } }Choose all that apply:
A Thierry Henry
B Steven Gerrend
C Kaka
D Michael Ballack
E Compilation error
+ AnswerE
+ Explanation
+ Report