what is the main difference between c and c++?
Answer Posted / poornima.r
in c, all the variable must be declared in declaration part
c++ permits declaration of variables anywhere in the program
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How do you achieve runtime polymorphism?
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
What is meant by oops concept?
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
What makes a language oop?
I have One image (means a group photo ) how to split the faces only from the image?............ please send the answer nagadurgaraju@gmail.com thanks in advace...
What is abstract class in oops?
What causes polymorphism?
What are the 4 pillars of oop?
What is destructor oops?
Whats is abstraction in oops?
What is abstraction and encapsulation?
program for insertion ,deletion,sorting in double link list
What are two types of polymorphism?
Are polymorphisms mutations?