What is the output of following code snippet? Assume that th…

What is the output of following code snippet? Assume that the code is inside a main function and all necessary header files are included. int x = 0; switch(x) {     case 1: printf(“One”);     case 0: printf(“Zero”);     case 2: printf(“Hello World”); }