Search:

Type: Posts; User: supi

Search: Search took 0.01 seconds.

  1. Thread: help on free()

    by supi
    Replies
    10
    Views
    1,807

    am developing a exe for dos based machine(Hand...

    am developing a exe for dos based machine(Hand Held Unit) which retrieves data from micro-controller based device.
  2. Thread: help on free()

    by supi
    Replies
    10
    Views
    1,807

    One more query on allocating and deleting when...

    One more query on allocating and deleting

    when i used malloc to allocate space for huge pointer


    typedef struct FileHdr
    {
    unsigned long reg;
    unsigned short width;
    unsigned char typ;
  3. Thread: help on free()

    by supi
    Replies
    10
    Views
    1,807

    what if when calloc() was used to allocate ...

    what if when calloc() was used to allocate

    thank you
  4. Thread: help on free()

    by supi
    Replies
    10
    Views
    1,807

    help on free()

    For eg: when a list is created using linked list with head holding the first pointer to the structure and followed by the next pointers to the structure.

    head->elemt1->elemt2->elemt3

    after...
  5. Replies
    2
    Views
    1,859

    the problem resloved

    I changed the below array



    #define ETX 3
    unsigned char RecBuffer[2048];


    to
  6. Replies
    2
    Views
    1,859

    problem with large array

    Hai,

    My serial interrupt routine collects all the data from the serial buffer (Controller) successfully, the data sent from the controller never exceed more than 2000 bytes.
    The problem is when...
  7. Replies
    1
    Views
    2,403

    Hex to float problem

    hai,

    I suspect something wrong

    i have 32 bit data, its float in hex
    if i have 0x00000000 data then it corresponding float value is 0.0 for this i tried like this



    unsigned char...
  8. Replies
    3
    Views
    3,700

    How silly i was :D!!!!!! Thanks iMalc for...

    How silly i was :D!!!!!! Thanks iMalc for rightly pointing it out......

    problem got fixed!!
  9. Replies
    3
    Views
    3,700

    problem with data in allocated memory

    hi,

    i have a problem in storing the data in allocated memory using malloc.

    i have structure to store huge data form the serial port.

    typedef struct FileData {
    unsigned char *FRdata;...
  10. Replies
    5
    Views
    1,696

    thanks

    thanks
  11. Replies
    5
    Views
    1,696

    help on Linked list

    hi,

    i know we can vary the no. of records in the list but can we vary the record size itself.

    eg


    typedef struct {

    int data;
Results 1 to 11 of 11