Javatpoint Logo
Javatpoint Logo

9. C program to print the largest element in an array

In this program, we need to find out the largest element present in the array and display it. This can be accomplished by looping through the array from start to end by comparing max with all the elements of an array. If any of element is greater than max, then store a value of the element in max. Initially, max will hold the value of the first element. At the end of the loop, max represents the largest element in the array.

C program to print the largest element in an array

In the above array, initially, max will hold the value 25. In the 1st iteration, max will be compared with 11, since 11 is less than max. Max will retain its value. In the next iteration, it will be compared to 7, 7 is also less than max, no change will be made to the max. Now, max will be compared to 75. 75 is greater than max so that max will hold the value of 75. Continue this process until the end of the array is reached. At the end of the loop, max will hold the largest element in the array.

ALGORITHM:

  • STEP 1: START
  • STEP 2: INITIALIZE arr[] = {25, 11, 7, 75, 56}
  • STEP 3: length= sizeof(arr)/sizeof(arr[0])
  • STEP 4: max = arr[0]
  • STEP 5: SET i=0. REPEAT STEP 6 and STEP 7 i<length
  • STEP 6: if(arr[i]>max)
                  max=arr[i]
  • STEP 7: i=i+1.
  • STEP 8: PRINT "Largest element in given array:" assigning max.
  • STEP 9: RETURN 0
  • STEP 9: END.

PROGRAM:

Output:

Largest element present in given array: 75
Next TopicC Programs





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA