Posts

Showing posts from November, 2017

C Program to Find Largest Element of an Array

This program takes n number of element from user (where, n is specified by user) and stores data in an array. Then, this program displays the largest element of that array using loops. To understand this example, you should have the knowledge of following C programming topics: C Programming for Loop C Programming Arrays Example: Display Largest Element of an array #include <stdio.h> int main () { int i , n ; float arr [ 100 ]; printf ( "Enter total number of elements(1 to 100): " ); scanf ( "%d" , & n ); printf ( "\n" ); // Stores number entered by the user for ( i = 0 ; i < n ; ++ i ) { printf ( "Enter Number %d: " , i + 1 ); scanf ( "%f" , & arr [ i ]); } // Loop to store largest number to arr[0] for ( i = 1 ; i < n ; ++ i ) { // Change < to > if you want to find the smallest e