What will be printed out as a result of the following code execution?
    int * z;
    int  const x = 5;
    z = &x;
    z++;
    std::cout << z ;
Explanation
Reference to a constant object x cannot be assigned to a non-constant pointer z

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты