im trying to let the user input a number for each person. the console then outputs the maximum value in the array. everything works fine but the max always outputs as -858993460. i tried multiple combinations but i cant seem to figure it out
im new to arrays so any help would be appreciated as well as an feedback on how to improve my code
#include <iostream>
int main()
{
    int people[10];
    int max = people[0];
    std::cout << "please enter number of pancakes eaten by each person.\n";
//lets the user input values for each element
    for (int i = 0; i < 10; ++i) {
        std::cin >> people[i];
    }
//outputs all the elements of the array
    for (int i = 0; i < 10; ++i) {
        std::cout << people[i] << " ";
    }
//finds the largest element in the array
    for (int i = 0; i > 10; ++i) { 
        if (people[i] > max) {
            max = people[i];
        }
        
    }
    std::cout << "\nmax: " << max;
    return 0;
}
also i keep getting a warning saying: ill-defined for-loop. loop body not executed. i tried looking this warning up but the warning seems very broad and i couldnt find anything that helped
 
     
    