Arrays in C programming
An array is a group (or collection) of same data types. For example an int array holds the elements of
Read moreAn array is a group (or collection) of same data types. For example an int array holds the elements of
Read moreTwo dimensional arrays are also called table or matrix, two dimensional arrays have two subscripts Two dimensional array in which
Read more#include <stdio.h> largest_element(int arr[], int num) { int i, max_element; max_element = arr[0]; for (i = 1; i < num;
Read more