need help on single and multidimensional array...

Recommended Answers

All 7 Replies

single int array[10]; multidimensional: int array[10][3]; This is more like a spreadsheet where it has 10 rows and 3 columns per row.

@ancient dragon..thanks for the reply...would u like to share with me full program both of these array...

There are hundreds, maybe even thousands, of programs here that use them.

Here are some tutorials you might want to study.

thank you for the reply...god blessed u all...

Don't forget multidimensional arrays can be...multidimensional. They aren't limited to just
int array[5];
int array[5] [10];
Go wild with
int array [5] [6] [10]; and so on :p

@kamatri....thanks for the tips...gbu...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.