struct node{
int data;
struct node *left, *right;
};
typedef struct node node;
non recursive method :
main()
{
node * root = NULL , *new = NULL *temp1 =NULL , * temp2 = NULL;
int num =1;
printf(" Enter the elements of the tree( enter 0 to exit)\n");
while(1)
{
scanf("%d", &num);
if(num==0)
break;
new = malloc(sizeof(node));
new->left = new->right = NULL;
new->data = num;
if( root NULL)
root->left = new;
else
insert( new,root->left);
}
}
dfgbrgffee
write a c++ program to convert binary number to decimal number by using while statement
write a c program that takes a binary file as input and finds error check using different mechanisms.
Don't write, it is already written, google for 'cpp'.
You are not able to do that, but you can write a program, that uses the system-call./* exectest.c */#include int main (void){execlp ("/bin/ls", "ls", "-ld", ".", NULL);return 0;}
to implement operations on binary heap in c
dfgbrgffee
write a c++ program to convert binary number to decimal number by using while statement
yes
give me the program which can related on domain and referential integrity.
write a c program that takes a binary file as input and finds error check using different mechanisms.
Don't write, it is already written, google for 'cpp'.
A program in c language to implement framing methods like character stuffing can be grave sizeCRC-32 and the variable c50.
lund lelo mooh mein
It can be implemented very easily .... Suppose the Binary word is X7X6X5.... X0 then the corresponding Gray code is G7G6G5....G0 where G7=X7 G6=X7 XOR X6 G5=X6 XOR X5 ..... G0=X1 XOR X0 Now implement the above algorithm
networking
You are not able to do that, but you can write a program, that uses the system-call./* exectest.c */#include int main (void){execlp ("/bin/ls", "ls", "-ld", ".", NULL);return 0;}