JAMIA 2023 — Computer PYQJAMIA | Computer | 2023What is output of following C code segment? int i; for(i=0;i<=2; i++) {switch(i) {case 1: printf(“%2d”, i); case2:printf(“%2d”,i);continue; default: printf(“%2d” ,i); }Choose the correct answer:A. 01112B. 0112 (Correct Answer)C. 01121D. Syntax errorCorrect Answer: 0112A01112B0112C01121DSyntax errorShow Answer SExplanationNo text explanation available.