✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Podan je naslednji program:
void test(int t[], int n) { for (int i = 0; i < n; i++) { t[i] = 0; }}int main(void){ int tab[] = {1, 2, 3, 4, 5}; test(&tab[3], 3); return 0;}
Kakšna bo vsebina tabele tab tik pred stavkom return?