Search:

Type: Posts; User: jimblumberg

Search: Search took 0.03 seconds.

  1. Replies
    10
    Views
    2,974

    In your function definition you have char...

    In your function definition you have char sortWords(...) that char means a single character. You do know that when you pass an array into a function in the parameters it will change the variable in...
  2. Replies
    10
    Views
    2,974

    One problem I see in your sortWords function is...

    One problem I see in your sortWords function is you have told the compiler you are going to return a single character but when you return you try to return your char array.

    Jim
Results 1 to 2 of 2