#include #include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ void funkcja3(int cel[]) { for (int i = 0; i < 10; i++) { cel[i] = rand(); } } int main(int argc, char** argv) { int tablica[10]; funkcja3(tablica); cout << "Zawartosc twojej tablicy: "; for (int i = 0; i < 10; i++) { if (i != 9) { cout << tablica[i] << ", "; } else { cout << tablica[i]; } } return 0; }