9 lines
187 B
C++
9 lines
187 B
C++
const char* Cartoons[] = {
|
|
"Bugs Bunny",
|
|
"Homer Simpson",
|
|
"Mickey Mouse",
|
|
"Bart Simpson",
|
|
"Charlie Brown" // There is a missing comma here.
|
|
"Fred Flintstone",
|
|
"Popeye",
|
|
};
|