What are the data types in oop?
1045
What does it mean when someone says I oop?
1016
write a program that takes input in digits and display the
result in words from 1 to 1000
2370
Is react oop?
1014
How do you explain polymorphism?
1014
#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.
3700
What is persistence in oop?
1094
design a c++ class for the chess board,provide a c++ class
definition for such class(only class definition is required)
6621
What is the difference between abstraction and polymorphism?
1048
What is encapsulation selenium?
954
Are polymorphisms mutations?
1108
write a program to find 2^n+1 ?
2017
What is the full form of oops?
1121
Why do we use polymorphism?
1009
What is a function in oop?
1019