0
Pls what is wrong with this, anybody?
2 Answers
+ 2
There are 3 problems:
1. You can't define the main function multiple times
2. You made a string into a character, which is illegal:
char* j = "grow";
or
char[] j = "grow";
instead of
char j = "grow";
3. You forgot a semicolon after "return 0"
Please, don't ask the same question twice!
0
Okay! Thanks very much