Find the largest number using Array

Problem : Find the Max/largest number
Input : 20, 5, 57, 23, 2
Output : Max:myArray[2]=57





  1. #include <stdio.h>

  2. int main()
  3. {
  4.     int myArray[]={20, 5, 57, 23, 2};
  5.     int Max;
  6.     Max=myArray[0];
  7.     
  8.     int i, j;
  9.   
  10.     for(i=1; i<5; i++) {
  11.         if (myArray[i] > Max) {
  12.             Max=myArray[i];
  13.             j=i;
  14.         }
  15.     }
  16.     printf("Max:myArray[%d]=%d \n", j, Max);

  17.     return 0;
  18. }

একটি মন্তব্য পোস্ট করুন