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
Who developed c language and when?
#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); }
Write program to remove duplicate in an array?
What is the mean of function?
Can a program have two main functions?
What is linear search?
Why we use void main in c?
What is strcmp in c?
what is the difference between class and unio?
What are c preprocessors?
What is structure of c program?
What is an expression?
What does stand for?
What is the role of this pointer?
Can static variables be declared in a header file?