Answer Posted / guest
1.c is the structure programming language where c++ is the
object oriented language.
2.c does not support class but c++ support class.
3.c++ also called c as class,that is the advance version of c.
4.c++ have operator overloading while c does't have operator
overloading
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
All technical questions
Explain how can I convert a number to a string?
#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); }
What is the scope of static variable in c?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
How can I trap or ignore keyboard interrupts like control-c?
How many levels of pointers can you have?
What the different types of arrays in c?
What is the use of getchar() function?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
State the difference between x3 and x[3].
What does void main return?
How many loops are there in c?
What are pointers?
What is self-referential structure in c programming?