Search:

Type: Posts; User: rjeff1804

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,156

    Zip It

    That's right...all files need to be sent but it will have to be sent as a zip file so that the .exe file isn't filtered by the email system. If the .exe file is sent as an attachment, then it might...
  2. Replies
    3
    Views
    1,156

    Emailing executables

    What files should I send with the executable for the receiver to be able to run the .exe file? Thanks
  3. Replies
    8
    Views
    21,776

    I would suggest doing a descending sort array and...

    I would suggest doing a descending sort array and then calling the function with some pointer arithmetic. Example,


    printf("%d", *iptr);
    iptr++;
    printf("%d", *iptr);
  4. Replies
    10
    Views
    2,379

    Quzah.. If you were in my shoes, would you put...

    Quzah..

    If you were in my shoes, would you put this on an exam as a question?
  5. Replies
    10
    Views
    2,379

    Can you send your comments? I would really like...

    Can you send your comments? I would really like to see them!
    I know that this program looks ugly to an experienced programmer, and I respect your comments but you are an exception.
  6. Replies
    10
    Views
    2,379

    Quzah... There are numerous ways to improve this...

    Quzah... There are numerous ways to improve this programs performance, including:

    1. improving the paritioning algorithm;
    2. using a different method to sort small arrays; and
    3. making the...
  7. Replies
    4
    Views
    2,500

    another exam question

    This another question that will be placed on the exam but with a different layout. Give it a try... I have others that I'm considering.
    Give me your answer and opinion (fair or not fair) for a...
  8. Replies
    10
    Views
    2,379

    They have been studying recursions, and now...

    They have been studying recursions, and now studying pointers. The group is intelligent but I'm still not sure if this question is appropriate because I don't know how they would answer the question....
  9. Replies
    10
    Views
    2,379

    sort problem for an exam

    I would like an opinion from visitors and senior programmers on the following test question that I'm considering to give to a class of students who are beginning to learn C programming. If I was to...
  10. Replies
    0
    Views
    775

    size operator

    The expression sizeof(a) / sizeof(a[0]) can be used to calculate the number of elements in a array. The expression
    sizeof (a) / sizeof (t), where t is the type of a's elements, would work, but its...
  11. Replies
    0
    Views
    1,159

    sizeof operator

    Can anyone help me with the following:

    I'm learning c programming and there is a chapter that discusses the sizeof operator. It sounds straight forward, but are there any disadvantages when using...
Results 1 to 11 of 11