โช 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;
}