Answer Posted / premnath
C++ is a Object Oriented Programming Language which is derived from C.
C++ is a general purpose language and is invented by "Bjarne Stroustrup" .
The main features of C++(OOP) are :
Operators and operator overloading,
Classes,
Objects,
Encapsulation,
Inhiritence,
Polymorphism &
Templates.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Can we change the value of #define in c?
How do you generate random numbers in C?
writ a program to compare using strcmp VIVA and viva with its output.
What is the function of volatile in c language?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Why can’t we compare structures?
What is a structure and why it is used?
How is a null pointer different from a dangling pointer?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
Explain how do you print an address?
Why c is a mother language?
What is the difference between test design and test case design?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What the advantages of using Unions?
How do you determine whether to use a stream function or a low-level function?