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(){
enum code{
add, del,modify, unchanged
};
typedef enum code CODE;
CODE c,d;
c=add;
d=modify;
printf("c=%d,d=%d ",c,d);
return 0;
}

A. c=0,d=2
B. c=0,d=0
C. c=0,d=1
D. c=add, d=modify