what is the C++
Answer / atasi jena
c++ is a object oriented programming language which provides different mechanism like inheritance, polymerphism, template, data abstraction over c.
| Is This Answer Correct ? | 11 Yes | 0 No |
How do you sort a sort function in c++ to sort in descending order?
What do you mean by stack unwinding in c++?
Why do we use the using declaration?
What is the type of this pointer in c++?
What are the weaknesses of C++?
How compile and run c++ program in turbo c++?
What is the use of namespace std in C++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
What is the basic concept of c++?
How static variables and local variablesare similar and dissimilar?
What is istream c++?
Why iomanip is used in c++?