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
What is a good way to implement complex numbers in c?
What is the meaning of typedef struct in c?
Explain how do you print only part of a string?
How do you search data in a data file using random access method?
What are identifiers c?
how can use subset in c program and give more example
Where in memory are my variables stored?
What is clrscr in c?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Is a house a mass structure?
Where register variables are stored in c?
What do you mean by a local block?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What is c basic?