Saturday 9 January 2016

Find Largest Element And Its Location In An Array. (Algorithm 2.3)


Before seeing the solution make sure that you tried enough. Don’t paste the whole code, just find out the logic. If you stuck in trouble, just inform me on comment.

/**Bismillahir Rahmanir Rahim.**/

#include <stdio.h>
int main()
{
    int n;
    scanf("%d", &n);
    int data[n], loc = 0 , max, i;
    for(i=0; i<n; i++)
        scanf("%d", &data[i]);
    max = data[0];
    for(i=0; i<n; i++)
    {
        if(data[i]>max)
        {
            max = data[i];
            loc = i;
        }
    }
    printf("The Max Value is %d in %d index\n", max, loc);
    return 0;
}

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.