Array
tutorials in c programming language by examples
An array is derived data type in c programming language which can store similar type of data in continuous memory location. Data may be primitive type (int, char, float, double�), address of union, structure, pointer, function or another array.
Example of array declaration:
int arr[5];
char arr[5];
float arr[5];
long
No comments:
Post a Comment