What will be printed out as a result of the following code execution?
#include <iostream>

struct B {
    void PrintIt() { std::cout << "Does it work?" << std::endl; }
};

int main() {
    B *obj = NULL;
    obj->PrintIt();
    return 0;   
}

Следи за CodeGalaxy

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

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