JAMIA 2023 β Computer PYQJAMIA | Computer | 2023What is output of following C program : void e(int x) { if(x>π) { e(- -x); printf(“%2d” , x); e(--x); } } int main() { e(3); return0; }Choose the correct answer:A. 0120 (Correct Answer)B. 0220C. Compile-time errorD. Run-time errorCorrect Answer: 0120A0120B0220CCompile-time errorDRun-time errorShow Answer SExplanationNo text explanation available.