what is the difference between c and c++?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Who developed c language and when?

699


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

712


Write program to remove duplicate in an array?

678


What is the mean of function?

754


Can a program have two main functions?

691






What is linear search?

786


Why we use void main in c?

691


What is strcmp in c?

677


what is the difference between class and unio?

1980


What are c preprocessors?

782


What is structure of c program?

693


What is an expression?

746


What does stand for?

704


What is the role of this pointer?

640


Can static variables be declared in a header file?

718