#include<stdio.h>
#include<conio.h>
main()
{
typedef enum y;
int c;
y colour {RED,WHITE,BLUE,BLACK};
clrscr();
printf("The assigned value is %d\n",RED);
printf("The assigned value is %d\n",BLUE);
printf("The assigned value is %d\n",BLACK);
c=RED+BLACK;
printf("RED+BLACK IS %d",c);
getch();
}
What is wrong with this code please?