Write a C program to find largest element in an array || Program of Largest Number || Array Programs

Write a C program to find the largest element in an array



#include <stdio.h>

int main()

{

    int n;

    double arr[100];

    printf("Enter the number of elements (1 to 100): ");

    scanf("%d", &n);

    for (int i = 0; i < n; ++i)

{

    printf("Enter number%d: ", i + 1);

    scanf("%lf", &arr[i]);

}

// storing the largest number to arr[0]

    for (int i = 1; i < n; ++i)

    {

    if (arr[0] < arr[i])

    {

    arr[0] = arr[i];

}

}

    printf("Largest element = %.2lf", arr[0]);

    return 0;

}

इस कोड को हमने CODEBLOCK पर बना कर run किया है



OUTPUT


Comments