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? main() { int i=-1; -i; printf("%d,%d",i,-i); }A. -1, 1B. -1, -1C. 44562D. 0, 1 Submit Answer