Which lines of the following code contain errors?
 1    int main()
 2    {
 3        const int* i = int();
 4        int const* j = int();
 5        int* const k = int();
 6        int* l();
 7    
 8        ++i;
 9        ++j;
10        ++k;
11        ++*k;
12        ++l;
13    }
Explanation
The compiler will throw the following errors:
10: error: increment of read-only variable k,
12: error: lvalue required as increment operand.

Следи за CodeGalaxy

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

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