Data Type C

#include 
enum spectrum { red, orange, yellow} colour;
char *rainbow[] = { "red", "orange", "yellow" };
int main() {
  
  for ( colour = red; colour <= yellow; colour++ ) {
      printf ( "%s ", rainbow[colour]);
  }
  printf ( "\n" );
}