hello;
can we say this when defining an enumeration :
enum letter{A=4,B=3,C,D,E};
i mean give letter B value smaller than the value of the letter A , is it possible ?
and what is the real benifet of the enumeartion in general ?
sometimes when making "cout" statement , the value appears as integers , is there any way that allow as see the real value of it , i mean when saying :
letter my;
my=C;
cout<<C;
i want the output here to be C not 4