Having the following declarations of variables, what will be printed to the console?
#include <iostream>

int main() {
    int a = 1;
    int b = 2;

    int c = (a,b);
    int d =  a,b;

    std::cout << c;
    std::cout << d;

    return 0;
}
Explanation
There will be redefinition of the variable b in the line: int d = a,b;.

Слідкуй за CodeGalaxy

Мобільний додаток Beta

Get it on Google Play
Зворотній Зв’язок
Cosmo
Зареєструйся Зараз
або Підпишись на майбутні тести