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 int main(){ int x,i=2; x=~-!++i; printf("%d",x); return 0; }A. -2B. -1C. 0D. 1 Submit Answer