#include <stdio.h>
#include <strings.h>
int main()
{
char a;
printf("Enter the traffic signal light :");
scanf("%c", &a);
if(a=="Red")
{
printf("STOP!!!");
}
else
{
printf("GO!!!");
}
return 0;
}
//I am in the beginning stage of coding. I am unable to understand the error, kindly please guide me.