What are the different scope C++ provide ?
No Answer is Posted For this Question
Be the First to Post Answer
Without using third variable write a code to swap two numbers.
What Is A Default Constructor in C++ ?
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 do you know about Volatile keyword in C++? Explain with an example code.
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 is a memory leak in C++?
What is the difference between an ARRAY and a LIST in C++?
Define namespace.
Tell me about virtual function
Can we use THIS Pointer in static function – Reason in C++?
Write a program to display the following output using a single cout statement Maths=90 Physics=77 Chemistry = 69
Write a program that ask for user input from 5 to 9 then calculate the average