void dodaj_piec(int a) { a = a + 5; }int main() { int x = 2, y; dodaj_piec(x); y = x + 5; }
Sprawdź odpowiedź