Search:

Type: Posts; User: Cornelius

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,823

    Conversions from a char to an int type are...

    Conversions from a char to an int type are already built into C. For example:

    int number;
    char letter = 'm';

    number = 'm'; /* number now holds the ascii value for m */
    Ascii values of...
  2. Replies
    3
    Views
    2,922

    I'm not going to write the program for you, but...

    I'm not going to write the program for you, but I'll help you out a bit. The exercise assumes that certain data is already present, such as data read from a datafile. Data that is unknown includes...
  3. Replies
    2
    Views
    3,393

    Borland C++ 5.5.1 for Win32 Copyright (c) 1993,...

    Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
    C:\Personal\School\CS225\temp\case01.c:
    Warning W8060 C:\Personal\School\CS225\temp\case01.c 23: Possibly incorrect assignment in...
  4. Replies
    3
    Views
    12,362

    Re: Re: recursive selection sort function

    Yay, it now works correctly! Thanks for the help! :D
  5. Replies
    3
    Views
    12,362

    recursive selection sort function

    I'm having a problem with a function that uses the selection-sorting algorithm using recursion rather than a loop. I start out with an integer array with 30 elements:

    199 173 175 28 175 102 114...
Results 1 to 5 of 5