Read the following code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the value after executing this code?
RE: Read the following code# define MAX 100# define MIN 100 .... ....if(x>MAX)x=1;else if(x<MIN)x=-1;x=50;if the initial value of x=200,what is the value after execu