Question: Write a definition for an array called adjectives to the strings brave, big, tiny. There can be more than 1 correct answer, partial points will

Write a definition for an array called "adjectives" to the strings "brave", "big", "tiny". There can be more than 1 correct answer, partial points will be given, penalty will be applied for wrong answers char* adjectives[][20] = { "brave", "big", "tiny" }; char adjectives[3][] = \{ "brave", "big", "tiny" }; char adjectives[3][20] = { "brave", "big", "tiny" }; char adjectives[][20] ={ "brave", "big", "tiny" }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
