What is the concept of object oriented program?

Answer Posted / mayank kumar

c++ follows the concept of class

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#include #include #include #include void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.

3257


what's the basic's in dot net

1742


What are the important components of cohesion?

557


What is polymorphism in oops?

562


What is polymorphism explain its types?

688






What are the data types in oop?

608


What is super in oop?

600


What is the important feature of inheritance?

637


What is an example of genetic polymorphism?

653


Why do while loop is used?

579


Templates mean

1592


What is abstraction in oop?

640


What is oops in simple words?

585


How to use CMutex, CSemaphore in VC++ MFC

4333


Why multiple inheritance is not possible?

604