Declare and initialize a two-dimensional character array named "stooges" to store the names "moe", "larry" and "curly" (in that order). Do not make the array any larger than it needs to be.
.
.
Click on the title for the solution
.
.
char stooges[3][6] = {"moe","larry","curly"};
.
Click on the title for the solution
.
.
This is the answer:
:
char stooges[3][6] = {"moe","larry","curly"};
Comments
Post a Comment