C++ Programmer Question:
Download Questions PDF

Tell me what will the line of code below print out and why?

Answer:

#include <iostream>

int main(int argc, char **argv)
{
std::cout << 25u - 50;
return 0;
}

Download C++ Programmer Interview Questions And Answers PDF

Previous QuestionNext Question
Tell me how to create a pure virtual function?Please explain is there a difference between class and struct?