-8

I have a theoretical question about c++ arrays and strings. What is declaration of char [10][100]? How many strings it may have and what is lenght of array?

Zeljo
  • 15
  • 1
  • 7

1 Answers1

0

it is a two dimensional character array

now assuming your second dimension as a string [100 characters]

so simply put it will be 10 strings with each max length of 100

JaYdipD
  • 42
  • 10