It is possible to build a C++ compiler on top of a C compiler. How would you do this?
No Answer is Posted For this Question
Be the First to Post Answer
What is an abstract class?
What is placement new?
How can you force the compiler to not generate them?
There is a base class sub, with a member function fnsub(). There are two classes super1 and super2 which are sub classes of the base class sub.if and pointer object is created of the class sub which points to any of the two classes super1 and super2, if fnsub() is called which one will be inoked?
What is the difference between member functions and static member functions?
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }
What does it mean to declare a member function as static in C++?
What is Copy Constructor?
Write a C++ Program to find Square Root of a number using sqrt() function.
When would you choose to return an error code rather than throw an exception?
How to reverse a string in C++
How to input string in C++