What are advantages of C++ when comparing with C?
Answers were Sorted based on User's Feedback
Answer / hari krishna pillai
Well!! This will results long and very long answer or
discussion. To make it short, C++ is a general purpose
programming language with a bias towards systems
programming that It is a better C, supports Data
Abstraction, supports Object Oriented Programming and
Generic Programming.
| Is This Answer Correct ? | 49 Yes | 8 No |
Answer / atreyee
A program in C is unstable compared 2 C++
Encapsulation,Inheritance in C++.
| Is This Answer Correct ? | 28 Yes | 10 No |
Answer / mohana
stonger typing: the type system in c++ is stronger than in c
| Is This Answer Correct ? | 24 Yes | 10 No |
Answer / a geek
We can not compare C to C++.
C++ programming is object oriented and and lot of features
which are no way achievable in C easily.
| Is This Answer Correct ? | 20 Yes | 6 No |
Answer / shami
C++ IS A NEW VERSION OF C,WHICH ACHEIVES EASY WAY OF
PROGRAMING USING OO APPROACH.
| Is This Answer Correct ? | 16 Yes | 6 No |
Answer / bhuvana
C++ is an object oriented programming language.And it has
the main features of classes & objects, inheritances,
polymorphism.
| Is This Answer Correct ? | 12 Yes | 4 No |
Answer / hari prasanth
c is a computer programming language and c++ is a object
oriented programming language
| Is This Answer Correct ? | 11 Yes | 3 No |
Answer / swathi
c++ is an extension of c with some additional features like encapsulation,inheritance,etc. which makes the program to easily understand
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / k
c
c++ is object oriented program. the main advatage is we can reuse the code and well structured and secured...
c
| Is This Answer Correct ? | 1 Yes | 0 No |
When does a name clash occur in c++?
What do you mean by “this” pointer?
When do we run a shell in the unix system? How will you tell which shell you are running?
What is flush programming?
What are the benefits of operator overloading?
Explain the concept of inheritance in C++.
What does obj stand for?
There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.
Explain storage qualifiers in c++.
What are virtual constructors/destructors?
how can u create a doubly linked list with out using pointers?
What are the main characteristics of C++ as a programming language?