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 x;
x = -3 * -4 % -6 / -5;
printf("x=%d ",x);
return 0;
}

A. x=0
B. x=3
C. x=-1
D. x=4