Explain the difference between c & c++?
No Answer is Posted For this Question
Be the First to Post Answer
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
What is the best c++ compiler for windows 10?
What is difference between c++ 11 and c++ 14?
What does getch() do according to the ANSI C++ standard a) Reads in a character b) Checks the keyboard buffer c) Nothing in particular (Its not defined there)
When do we run a shell in the unix system? How will you tell which shell you are running?
Name the operators that cannot be overloaded in C++?
What's c++ used for?
Who discovered c++?
What is data hiding c++?
5. Can inline functions have a recursion?
What is the use of turbo c++?
What is anonymous object in c++?