What will be output of the following “C” code?
		
					

Loading

โœช 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, 1
B. -1, -1
C. 44562
D. 0, 1