answersLogoWhite

0

What is single dimentional?

User Avatar

Anonymous

14y ago
Updated: 5/4/2022

A single dimension array is an array with one dimension. It is a collection in memory of one or more elements of the same type.

int array[100];

declares an array of int's of size 100 elements. The elements are referenced as array[0], the first one, through array[99], the last one.

User Avatar

Delpha Murray

Lvl 10
3y ago

What else can I help you with?