JAMIA 2022 — Computer PYQJAMIA | Computer | 2022What is the output of following C program: int main () { int a [3] = {10, 12, 14}; a [1] = 20 : int i = 0; while (i < 3) printf (“%d”, a[i]); i++; return 0: }Choose the correct answer:A. 20 12 14B. 10 12 20C. 10 20 14 (Correct Answer)D. Run-time errorCorrect Answer: 10 20 14A20 12 14B10 12 20C10 20 14DRun-time errorShow Answer SExplanationNo text explanation available.