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

int main()
{
    int i = 3;
    int c = 0;
    while(i)
    {
        ++c;
        i ^= i & -i;
    }
    std::cout << c;
    return 0;
}

Следи за CodeGalaxy

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

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