what isthe difference between c structure and c++ class
Answer Posted / a.sivasakthi
c structure are only define the data and data types
C++ class are define the data and solve the function the
both process are solved to the c++ class
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
What is abstraction in oops?
What is oops and why we use oops?
String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?
What is polymorphism and example?
Why is there no multiple inheritance?
What is static modifier?
Which is better struts or spring?
Why we use classes in oop?
Why do we use inheritance?
Is html an oop?
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
write knight tour problem which is present in datastructure
What are the 4 pillars of oop?
What is this pointer in oop?
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).