shanki himanshu 27 Light Poster

@all
there is a question and i need to submit it online.

#include<stdio.h>
#include<string.h>

int median(int input1[],int input2[])
{
    //Write code here
}

here i cant use vector and cant pass the size from main function. i just need to complete the median function and submit it.

shanki himanshu 27 Light Poster

why c[0] is adding to 512?

shanki himanshu 27 Light Poster
int i;
float *pf;
pf = (float *)&i;
*pf = 100.00;
printf("\n %d", i);
shanki himanshu 27 Light Poster
struct node
{
    int info;
    node *left,*right;
};


int main()

{
struct node *root;

    root = (struct node*)malloc(sizeof(struct node));

    root->info=NULL;
    root->left=NULL;
    root->right=NULL;

   if(root==NULL) printf("%d",root->info);
   return 0; 
}

why it doesnt print root->info?

shanki himanshu 27 Light Poster

@alexchen..i know no1 is here for that.But i dont have time left thats why i m asking.

shanki himanshu 27 Light Poster

hi guys...actually m in deep trouble.i have to make projct in turbo C.
but i dont have any time left.Can ny1 help me.
can ny1 send me projct so dat i cant lose my marks.
plz help meee...

jonsca commented: Fail -1
Shankye commented: We are not here to do your project +0