what is the main difference between c and c++?
Answers were Sorted based on User's Feedback
Answer / rokesh
very simple. C++ is actually named as C with classes.. It
makes use of classes.. thats all the difference
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / anhr computer education
In 'C' header file is optional but in C++ header file is
compulsory and cannot be ignored.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / aliraza
c language could not any return value and c++ return value
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / cyber warrior
C is containing single character but "c++" contains three
characters
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / divya
c is an object oriented and c++ is procedure oriented
| Is This Answer Correct ? | 7 Yes | 9 No |
Answer / ankit agarwal
main difference c++ is an increment version of c language.
in written program c++ is more easy than c.c++ is easily
understand.
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / nmreddy
c is procedure oriented language c++ is object oriented language
c and c++ not secured data
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / nmreddy
c++ is a high level language
c is high level and low level language
| Is This Answer Correct ? | 1 Yes | 3 No |
What is encapsulation example?
Can an interface inherit a class?
Explain virtual inheritance?
What is encapsulation with example?
What is multiple inheritance? Give Example
why freind function takes more parameter than normal member function in c++?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
What is difference between function overloading and overriding?
What are the OOPS concepts?
106 Answers A1 Technology, Bajaj, CTS, EDS, HP, Infosys, Intel, Microsoft, MNC, Persistent, PlanetSoft, ProConstructor, TCS, Virtusa, Wipro, YSoft Solutions,
What is the oops and benefits of oops programming?
how many types of notations are in java
1 Answers National University of Modern Languages (NUML),
char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output