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=-1,j=-1,k=0,l=2,m; m = i++ && j++ && k++ || l++; printf("%d %d %d %d %d",i,j,k,l,m); }A. 0 0 1 3 1B. 1 1 0 2 0C. 2 2 1 3 1D. None of these Submit Answer