#include #include 5 #define VELKOST_POLA 52 int main(){ int vysledky[VELKOST_POLA]; int pocet; int max=0; int i=0; int c=0; char pole[100]; memset(pole,0,VELKOST_POLA * sizeof(int)); for(i max){ max = pole[i]; c=i; } printf("\nSúťažiaci č.%d vypil %d pohárov.\n", i , pole[i]); } printf("\nVýherca je súťažiaci%d ktorý vypil %d pohárov\n", c , max); return 0; }