jak zrobic program ktory losuje liczby z podanego zbioru, np. libczy ze zioru (2,19,147,201) ??
0
0
#define ARR_SIZE 4
int arr[ARR_SIZE] = {2,19,147,201};
//srand(...
int val = arr[rand()%ARR_SIZE];