What will be printed out as a result of the following code execution?
#include "stdio.h"

class Counter {
  public:
    void Count() { printf("%d", 1); }
};

int main() {
  Counter obj;
  obj.Count();
  return 0;
}

void Counter::Count() { printf("%d", 2); }
Explanation
The function Counter::Count belongs to the class, and therefore an error will be thrown about redefining the function.

Слідкуй за CodeGalaxy

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

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