Search:

Type: Posts; User: PrashantVaidwan

Search: Search took 0.00 seconds.

  1. dear, in both version of program, u are...

    dear, in both version of program, u are allocating different amount of memory to 'buf', in firts version static memory of 80 bytes is being allocated while in second one it's only 20...
  2. Replies
    5
    Views
    1,926

    yaah..!!!!........ memory has not been allocated

    yaah..!!!!........ memory has not been allocated
  3. yep.............it looks...

    yep.............it looks reasonable.....................but implementation could be more simpler
  4. Replies
    15
    Views
    3,399

    have a try with the following sequence ...

    have a try with the following sequence


    unsigned char p=170;
    p=~p;
    p=p<<4;
    p=p>>4;
    printf("&#37;d \n",p);
  5. Replies
    30
    Views
    7,477

    Ohhh.........i got it buddy..u are...

    Ohhh.........i got it buddy..u are right......................
  6. Replies
    30
    Views
    7,477

    Hi dear, in ur code i really don't understand how...

    Hi dear, in ur code i really don't understand how can u achieve ur desired parallelogram. Please see my code below to print a parellogram as u need. Hope, it will work out.....................

    ...
  7. Replies
    26
    Views
    2,458

    [QUOTE=shardin;673572] struct student{ char...

    [QUOTE=shardin;673572]
    struct student{
    char ime[20];
    int mbr;
    struct student *next;
    };


    Ok i understand it..as earlier u have considered it a sorted list. Please see my function to insert ...
  8. Replies
    7
    Views
    1,968

    memory 4 the each node will be allocated...

    memory 4 the each node will be allocated separately and if u are freeing only root node,then only node is getting freed and memory 4 the others node is still allocated
  9. Replies
    26
    Views
    2,458

    Plz write down the elements of structure to...

    Plz write down the elements of structure to understand it easily. I really don't understand...why are u comparing an int with a pointer?
Results 1 to 9 of 9