How do you save a c++ program?
Answer / Savinay Kumar
Save your C++ file with a .cpp extension in a text editor. Make sure to save it in the directory where your system's C++ compiler can find it.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain about vectors in c ++?
What is #include cmath?
Comment on c++ standard exceptions?
List the advantages of inheritance.
Should I learn c or c++ first?
Is eclipse good for c++?
What is the average salary of a c++ programmer?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
What is command line arguments in C++? What are its uses? Where we have to use this?
class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list
Can we have "Virtual Constructors"?
How important is c++?