What is the best c++ compiler?
Answer / Shilpa Yadav
The 'best' C++ compiler can vary depending on the specific use case and operating system. Some popular options include g++, Clang, Microsoft Visual C++, and Intel Compiler.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is difference between n and endl in c++?
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
What is a set in c++?
What are advantages of c++?
What does scope resolution operator do?
What is the difference between map and hashmap in c++?
Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement
when can we use virtual destructor?
7 Answers HCL, HP, Virage Logic,
Describe linkages and types of linkages?
What is the difference between operator new and the new operator?
How do you establish an is-a relationship?
What is #include iostream in c++?