How did c++ get its name?
what is static function
What are the types of STL containers?
What is data structure in c++?
Why do C++ compilers need name mangling?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Given an array of size N in which every number is between 1 and N, determine if there are any duplicates in it. You are allowed to destroy the array if you like. [ I ended up giving about 4 or 5 different solutions for this, each supposedly better than the others ].
Which software is best for c++ programming?
what is multi-threading in C++?
Why do we use vector in c++?
If you had the following code: int x = 23; int *y; y = &x; The instruction y++; does what?
What is an adjust field format flag?
What is the function of I/O library in C++ ?