KENDRIYA VIDYALAYA

Processing of all elements (i.e. from first element to the last element) present in one-dimensional array is called traversal. For example, printing all elements of an array, finding sum of all elements present in an array. #include void print_array(int a[ ], int n) //n is the number of elements present in the array … ................
................