Search:

Type: Posts; User: scmurphy64

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    2,888

    I was eventuallu going to label the rows and...

    I was eventuallu going to label the rows and columns 1 through 10 using the 0 row and 0 column for the labeling
  2. Replies
    5
    Views
    2,888

    Nevermind

    Nevermind, I change the int miss = 00; int miss = 55;, and that fixed the issue. If I had set it to 0000, the value is still zero, and only a single 0 will be displayed. Besides, the 55 is like...
  3. Replies
    5
    Views
    2,888

    Missing the second = was the problem

    Arrgh, missing the second = was the problem, and thanks for you help. Still having an issue with the miss not posting a "00" in the array, and I will reply if I can't fix it. Please post something...
  4. Replies
    5
    Views
    2,888

    Trouble with two two dimensional arrays

    I am in the process of writing code for a Battleship game, and I am just trying to get the game to work properly before I worry about creating functions to reduce the code. I am selecting 5, 5, 5, 4...
  5. Replies
    9
    Views
    2,672

    That fixed the issue, and thanks a bunch for your...

    That fixed the issue, and thanks a bunch for your help.

    The commented line you mention was me trying to fix the problem, my thought process was definitely going down the wrong path, and I forgot...
  6. Replies
    9
    Views
    2,672

    Correction function is called SeatsAvailable, not...

    Correction function is called SeatsAvailable, not AvailableSeats
  7. Replies
    9
    Views
    2,672

    Stuck with function

    I have a function in my program called BoardingPass which is suppose to print the seat number selected in function AvailableSeats, but I cannot get the right seat number to print when the...
  8. Replies
    2
    Views
    816

    Help with structures

    I am writing a program that will list 15 students by student number, student name, and their 5 test grades in a table while using a stucture.

    examaple:
    1 John Doe 94 87 56 42 99
    2 Jane...
  9. The for loops in the total function start with 1...

    The for loops in the total function start with 1 instead of 0, because I do not want to include the values in the first row or first column in the totals.
    The first row [0] was prefilled with...
  10. Still have a totaling issue after modifying code

    I am still having a problem with total function.
    The function is adding the row values, and place the total in the last column, and this works.
    The function is also suppose to add the values in...
  11. Replies
    3
    Views
    1,637

    Still not sure why this is causing problem

    I still don't understand what the first reply means. Please remember I am a novice, additional explanations and or suggestions welcomed

    My program creates a table, and then totals the values in...
  12. Replies
    3
    Views
    1,637

    Getting an error when totaling table

    I am a novice to C programming, and a program I am writing for school is crashing when attempting to total all values in table, and I cannot figure out what I am doing wrong in the void Totals(void)...
  13. Replies
    2
    Views
    7,842

    Thanks

    Thanks, removing the semi colon after switch(menu_choice) fixed the problem.
  14. Replies
    2
    Views
    7,842

    Getting illegal case error

    I am getting an illegal case error when compiling the following code listed below. I am a novice, I have reread the section on switch statements in the 4 books I have, and cannot figure out what I...
Results 1 to 14 of 14