Search:

Type: Posts; User: Sam_bham

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    4,458

    Thanks mate. In case of using '\0', as a...

    Thanks mate.

    In case of using '\0', as a teminator of send. does this may cause the client hung and not recieving the other strings may be send after the first one?!!
  2. Replies
    3
    Views
    4,458

    Using recv() and send()

    I want to write client-server program. The server should send many strings (messeges) and get response from the user on the client-side, here is in example:

    on the server-side:

    ....
    char...
  3. Replies
    11
    Views
    5,299

    That is the declaration for n and sorted_stocks:...

    That is the declaration for n and sorted_stocks:

    for sorted_stocks:

    //global
    typedef struct node
    {

    Item item;
    struct node *next;
  4. Replies
    11
    Views
    5,299

    Thanks for all of you, I tried to implement the...

    Thanks for all of you,
    I tried to implement the approach on the following link ( for Kent):

    http://www.experts-exchange.com/Programming/Programming_Languages/C/Q_20754585.html

    but I am having...
  5. Replies
    11
    Views
    5,299

    qsort and linked-list

    I wonder if someone answers my question, if somebody tried to use qsort to sort link-list?!! :eek:
  6. Replies
    6
    Views
    4,579

    Thans for your help. But the problem still...

    Thans for your help. But the problem still exists,
    Since reading the same file to an array of structures was successful, but reading it to linked-list gives incorrect result due to the next field...
  7. Replies
    6
    Views
    4,579

    What I sent you is just a few segment of my...

    What I sent you is just a few segment of my projct, just to show you part of the implementation, the program read some data but was incorrect for some reason. I think using the the following...
  8. Replies
    6
    Views
    4,579

    puplate a linked-list from binary file

    I want to write a program that read the binary file to linked-list, here is my code:


    but I wasn't been lucky to run it, any suggestions?!!
  9. Replies
    5
    Views
    1,001

    Can I use pointers to do the job. Thanks

    Can I use pointers to do the job.

    Thanks
  10. Replies
    5
    Views
    1,001

    Thanks for you reply, actually I need to use...

    Thanks for you reply, actually I need to use qsort() function. I got a global array of structure as follows:

    RECORD record[MAX_NO_ITEM]; //global- kept without change

    and I have a...
  11. Replies
    5
    Views
    1,001

    assigning two array of two stractures

    I need help to assign two array of stractures to each other?!!

    Many Thanks
Results 1 to 11 of 11