what is the main difference between c and c++?
Answers were Sorted based on User's Feedback
Answer / piyush
c is hard to manage whereas c++ is easily managable
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sreenvasulu
c is the obeject based programing language
c++ is the obeject oreiented programing language
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sreenvasulu
c is developed by denis ritchie
c++ is developed by Bjane starusrup
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sreenvasulu reddy
c can use main() in c program
But c++ can use void main() in c++ program
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / m.reddeppa
c is stretcher oriented programing language ,
c++ is object oriented programing language.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / pravin kerai
c dose not support the c++ program but c++ support the c
program
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nagesh sharma
C++ is made adding classes with c so it is called c++
but in c classes are not available
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ishwar lal patidar
c is a old language but c++ is a new generation language.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / amit dhar
c is a procssor langauge
c++ is a oop language
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rajiv ranjan
c is low level language while c++ is sn high level language.
c++ is an extension of c language this means that you can
use not only the new features of c++ but can also use the c
programing on that. c++ is an object oriented while c is an
program oriented in whiC++ is object oriented language and
c is objecc does not support the c++ programme but c++
support the c
program.
t based.
| Is This Answer Correct ? | 0 Yes | 0 No |
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
create a c++ program that will ask 10 numbers and display their sum using array.
How do you explain polymorphism?
Get me an image implementation program.
What is the difference between encapsulation and polymorphism?
What is static in oop?
What type of Job you are providing?
In the following declaration of main, "int main(int argc, char *argv[])", to what does argv[0] usually correspond? 1) The first argument passed into the program 2) The program name 3) You can't define main like that
What is the purpose of enum?
What is and I oop mean?
WAP to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
What is constructor in oop?