what is the main difference between c and c++?
Answers were Sorted based on User's Feedback
Answer / tarun
c is a computer pragraming language
c++ is the more depper than computer programming
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vipin
c is the procedural oriented programming(POP).
But,
C++ is an object oriented programming(OOP).
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / prathyusha
c++ supports the over loadind function which is not
supported in c programming
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / anusha
C is a general purpose and structured programing language,where as c++ is object oriented.
In C we wont use classes,where as c++ called as c with classes
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / fahim uddin shaown
The namespace features in c++ is absent in case of c.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jatin gupta
The main difference in c & c++ is that.....
c language is a procedure oriented language where as
c++ is a object oriented language!!!
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jagan
c is a procedural programmiing language and c++ is object
oriented language.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / parthipan
1.C is structured language.
2.C is top to bottom apporach.
3.C does not support data hiding ,so there is no security
for data
4.c++ is object oriended programming language
5.c++ is bottom to top apporach
6.we can divided the big program into small logical unit.so
we can create seperate object for each module.
7.In c++ the access specifier private,public,protected are
used to handle the data for more security.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sarath
c is a procedural programming and c++ is an object oriented
programming.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sum1
Depending on the data we can design the program in c++..it means bottom to top approach.
In c depending on the function or variables we can design the data.. it mean top to bottom approach
| Is This Answer Correct ? | 0 Yes | 0 No |
i had specified the access specifier for abstarct class member like (pure virtual function) as private.But it can be accessed by the derived class.How the private member of one class is accessed by other class.if any body face this problem and found the solution plz reply to me.
Write a program to sort the number with different sorts in one program ??
What are the three main types of variables?
What type of loop is a for loop?
what is the difference between inter class and abstract class...?
WHAT IS THE DIFFERENCE BETWEEN OBJECT BASED & OBJECT ORIENTD PROGRAMMING LANGUAGE.(GIVE AT LIST 4 PIONT)
What is static in oop?
what is the use of template classes in c++
Which keyword is written to use a variable declared in one class in the other class?
what is the use of classes in c++;
what is graphics
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }