Monday, 25 February 2013

Arrays

What is an array?

An array is a consecutive series of variables that share one variable name
The individual data items in an array must all be of the same data type, accessed using an index
Often used when dealing with multiple data items possessing common characteristics
Ex. 24 hourly temperature readings might be stored in array named temperature

No comments:

Post a Comment

String functions

Read This: strncpy() strncat() strstr () strlen() — Predefined function defined in string.h . — — Returns the len...