A function is a module or block of program code which deals with a particular task. Making functions is a way of isolating one block of code from other independent blocks of code. Functions serve two purposes. They allow a programmer to say:"this piece of code does a specific job which stands by itself and should not be mixed up with anything else", and they make a block of code reusable since...
Friday, 26 December 2014
C - ARRAY
C Array is a collection of homogeneous value i.e.
belongings to the same data type. You can store group of data of same
data type in an array.
Array might be belonging to any of the data types.
Array size must be a constant value.
Always, Contiguous (adjacent) memory locations are used to store...