What is namespace std; and what is consists of?
No Answer is Posted For this Question
Be the First to Post Answer
How did c++ start?
What is vector processing?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
When is a template a better solution than a base class?
Does c++ have arraylist?
Difference between overloaded functions and overridden functions
please help to write the code of chess game in c++??????????
Explain one-definition rule (odr).
Which software is used for c++ programming?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}