In TDS Challan, i had written the TAN No of my company
wrongly and i file it to the Govt. what can i do now? is
there any problem reg this? wat is my next step? shall i
give any letter to TDS Circle in this regarding? how can i
approach them? Kindly help me immdly with the procedure.
2542
Explain cluster sampling technique in data science
406
5.Call by value and Call by reference with program?
2288
What are the events in screen programming?
1161
How many types of schemas are there?
1042
Explain me how to create thumbnails using bootstrap?
3
What is the use of SAP NetWeaver Enterprise Portal?
1078
What are wordpress hooks?
254
Describe ajax control extender toolkit? : asp.net ajax
976
What are the difficulties faced in cube development? : sql server analysis services, ssas
1041
What is triggers and its types?
1009
Explain the difference between substitute and replace function in ms-excel?
840
where is 0recordmode infoobject used?
36
#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.
3764
What is the use of the mustunderstand attribute in the header element of a soap message?
668