What is the disadvantage of using a macro?
No Answer is Posted For this Question
Be the First to Post Answer
How compile and run c++ program in turbo c++?
What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }
What is a c++ class?
i want to know how to copy arrary without using any method or function. I have tried the below using System; class e4 { static void Main(string[] args) { int a,b; int[ ] m= new int[5]; int[ ] n= new int[5]; for(a=0;a<=4;a++) { Console.WriteLine("enter any value"); m[a]=Convert.ToInt32(Console.ReadLine()); m[a]=n[a]; } for(b=0;b<=4;b++) { Console.WriteLine(n[b]); } } } but it will give wrong result can anyone solve this problem
When should you use multiple inheritance?
Explain how an exception handler is defined and invoked in a Program.
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
Describe private, protected and public – the differences and give examples.
What is a pdb file?
Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?
Explain the benefits of proper inheritance.
Write a program to find the Fibonacci series recursively.