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
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is the difference between pure virtual function and virtual function?
What does the message "automatic aggregate intialization is an ansi feature" mean?
What is a structural principle?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
What is the difference between printf and scanf in c?
Can you write the function prototype, definition and mention the other requirements.
What is void main ()?
What are the 4 types of programming language?
How do I use void main?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What is selection sort in c?
What is data structure in c and its types?
What is the difference between single charater constant and string constant?
What is the value of uninitialized variable in c?