Define a way other than using the keyword inline to make a function inline?
Answer / subham chaudhary
The function must be defined inside the class.
| Is This Answer Correct ? | 0 Yes | 0 No |
Can you please explain the difference between overloading and overriding?
What is iterator in c++?
Why was c++ made?
int *p = NULL; printf("%1d",p) ; what will be the output of this above code?
Is eclipse good for c++?
What is a container class? What are the types of container classes?
What is the disadvantage of using a macro?
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
Is c++ primer good for beginners?
What is heap sort in c++?
What are its advantages and disadvantages of multiple inheritances (virtual inheritance)?
print first nodd numbers in descending order