what is the difference between c and c++?

Answers were Sorted based on User's Feedback



what is the difference between c and c++?..

Answer / rajasekhar

cpp is an object oriented programming language

c is a procedural oriented programming language

cpp is more flexible to use in real time environment

c is not flexible

cpp structures can allow functions where as c doesnt allow functions in its structures

Is This Answer Correct ?    13 Yes 3 No

what is the difference between c and c++?..

Answer / manish soni

1.c is supprt top down approach while cpp support bottom up
approach.
2.c can't handle big program while cpp can do this task.


manish soni TBC jaipur

Is This Answer Correct ?    4 Yes 2 No

what is the difference between c and c++?..

Answer / shwetha

c is a pop language, while cpp is an OOP language
c gives importance to procedures..
cpp give importance to the data...using objects, suitable for real worlds problems

Is This Answer Correct ?    5 Yes 3 No

what is the difference between c and c++?..

Answer / sai

c is a procedural language which can't use in real world
applications
c++ is object oriented programming language
by using objects in c++ we can declare classes
we can use encapsulation in c++ but can't use in c
the execution of c++ is faster than c
we use printf scanf in c and cout cin are used in c++
for writing and printing data
we don't require to write header files in c++ instead we
have to write iostream

Is This Answer Correct ?    1 Yes 0 No

what is the difference between c and c++?..

Answer / rajasekhar

In c the header files get included along with the users code ultimately increases the size of the program..

where as in cpp the header files are do not include , but the objects navigates between library files and users code

Is This Answer Correct ?    3 Yes 2 No

what is the difference between c and c++?..

Answer / guest

c is a low level language c++ is middle level language, in
c functions are building blocks where as in c++ objects are
building blocks, c having structures and unions,but c++ not
having any structures and unions.c is platform
inependent,c++ is platform independent

Is This Answer Correct ?    1 Yes 2 No

what is the difference between c and c++?..

Answer / p.pavithra

=>c is procedure oriented language and gives importance to
procedure that is functions rather than data.c is middle
level language.
=>c++ is object oriented language and gives importance to
object that is data
c++ is high level language



=>c does not a class/object concept
=>c++ provides data encapsulation,data
abstraction,polymorphism.


=>c passing value to a function is "call by value"
=>where c++ its "call by reference"


=>C++ is the hight level language.
=>C is low level language.

Is This Answer Correct ?    1 Yes 5 No

Post New Answer

More C Interview Questions

what is computer

4 Answers  


When should a far pointer be used?

0 Answers   Aspire, Infogain,


34.what are bitwise shift operators? 35.what are bit fields? What is the use of bit fields in a structure declaration? 36.what is the size of an integer variable? 37.what are the files which are automatically opened when a c file is executed? 38.what is the little endian and big endian? 39.what is the use of fflush() function? 40.what is the difference between exit() and _exit() functions? 41.where does malloc() function get the memory? 42.what is the difference between malloc() and calloc() function? 43.what is the difference between postfix and prefix unary increment operators?

3 Answers  


What is character set?

0 Answers  


Write a program to print distinct words in an input along with their count in input in decreasing order of their count..

1 Answers  






How can I convert a number to a string?

0 Answers  


what are two kinds of java

2 Answers  


in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above

0 Answers  


Which header file is used for clrscr?

0 Answers  


Explain what are multidimensional arrays?

0 Answers  


What is a stream water?

0 Answers  


what do structure language means?

3 Answers   Microsoft,


Categories