Answer Posted / satish kumar
C:
1.c is the structure programing language.
2.its contains the top down procedure .
3.in dis programing language programs are very complex.
4.it doesnt suports the inheritanc concepts..nd exception
handling concepts.
C++:
1.c++ is the object oriented programing language.
2.it is the bottm down procedure.
3.comparing to the c .it can be suports the
inheritance ,exception handlng,constructors,operator
overloadiong concepts.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is an expression?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Can you write the algorithm for Queue?
What library is sizeof in c?
What is double pointer in c?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What are the preprocessor categories?
What does return 1 means in c?
What is the meaning of c in c language?
what is different between auto and local static? why should we use local static?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What is openmp in c?
What happens if a header file is included twice?
What do you mean by command line argument?
How to find a missed value, if you want to store 100 values in a 99 sized array?