What will be output of the following “c” code? June 6, 2022 by admin โช Choose the correct option.What will be output of the following “c” code? #include void main() { int i=5; printf("%d",i+++++i); }A. 5B. 6C. Compiler ErrorD. 7 Submit Answer