what is difference between C and C++

Answers were Sorted based on User's Feedback



what is difference between C and C++..

Answer / zubin abraham

C is structure oriented Designing language where as C++ is
Object oriented language

C is used for creating System level programs and c++ is used
for creating application programs and GUI

Is This Answer Correct ?    12 Yes 0 No

what is difference between C and C++..

Answer / nataraj

c is an basic language, and c++ is advanced language.and c
is an basic of the program.

Is This Answer Correct ?    12 Yes 1 No

what is difference between C and C++..

Answer / sight

Hi!!
C is basically developed for Structured programming...
C++ is developed for Object Oriented Programming..

C we can't use Inheritance,Polymorphism.etc..Concepts
C++ we can use this concepts...

C is not as secured compared to C++
C++ is more secure than C b'coz it use Object Oriented
concepts..

C is to Down Approach
C++ is Bottom top Approach..

Is This Answer Correct ?    11 Yes 0 No

what is difference between C and C++..

Answer / kalyanram

c is a procedural oriented language ,in c there is no
security & reusabulity concepts
in c++ lan object oriented language this provide concept of
class,inheritance ..so it is more security

Is This Answer Correct ?    5 Yes 0 No

Post New Answer

More C Interview Questions

A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(

0 Answers  


What is difference between function overloading and operator overloading?

0 Answers  


What is indirection?

0 Answers  


f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed

5 Answers  


What does printf does?

0 Answers  






What is structure pointer in c?

0 Answers  


void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }

5 Answers  


"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above

0 Answers  


What is %s and %d in c?

0 Answers  


What functions are in conio h?

0 Answers  


What is header file in c?

0 Answers  


What is signed and unsigned?

0 Answers  


Categories