what is the difference between an OS(operating system) and
Framework?
719
what are different phase of SDLC in a banking domain
development ?
3351
22216 CC bearing
286
What is shutter speeds (INTEGRATION TIME)?
262
as a electrical student why should i hire you?
1090
explain how the third harmonic content of the magnetising
current affects transformer design
1884
How does the type system works when there is
interoperability between a COM and .Net, i mean what exactly
happens there
806
#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.
972
is is advisable to give a Pewter finish n Stainless Steel ?
State the Advantages & disadvantages.
1568
How to find CN by using arcgis 9.3?
1015
What is ferro-resonance in electrical system?
Why it occurs and what are measures to prevent it?
1002
what is the use of schema in biztalk and why we use schema?
427
i want to increase my ups back time ,i have added one 12v
68ah battery to my ups but it is not working ,is it possible
to make adjustment so that new battery will work.
1681
What is Soft-fax and Soft-modem?
540
Which is the best institute to learn Microsoft Technologies
and the faculty if you Know?
860