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

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!