What will be the output of the following program on GCC?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC?

#include 
int main(){
int i=-4, j, num=10;
j = i % -3;
j = (j ? 0: num*num);
printf("j=%d ",j);
return 0;
}

A. j= -1
B. j=100
C. j=1
D. j=0