Basics-Wrapup

View on GitHub

Array

Array is a container which can hold a fix number of items and these items should be of the same type. Most of the data structures make use of arrays to implement their algorithms. Following are the important terms to understand the concept of Array.

Basic Operations

Following are the basic operations supported by an array.

In C, when an array is initialized with size, then it assigns defaults values to its elements in following order

Data Type Default Value
bool false
char 0
int 0
float 0.0
double 0.0f
void void
wchar_t 0