Search:

Type: Posts; User: Dom

Search: Search took 0.01 seconds.

  1. rmatze

    do you think you could just give that one to me pleaaaase....it's so late I don't really know anymore.......
  2. Could you guide me into how to get the...

    Could you guide me into how to get the checkWinner to actually do its job during the game? It is not working as of now....
  3. i was actually talking to the other guy since...

    i was actually talking to the other guy since he's actually more helpful.
  4. OK i simplified it and made it shorter and removed the return x...return o...

    can you please explain the return int a little more???? thanks



    #include <stdio.h>
    #include <stdlib.h>


    void info()
    {
  5. if i get rid of the return x and return o, the...

    if i get rid of the return x and return o, the program stops working after a number is entered
  6. Ok ok, It compiles the same exact way even without the curly brackets...try

    #include <stdio.h>
    #include <stdlib.h>


    void info()
    {
    printf("TIC-TAC-TOE\nWritten by MEEEE\n");
    printf("Your Symbol 'x'");
    printf("Computer Symbol 'o'");
    }
  7. you mean something like this?

    if (cell[0] != ' ')


    {
    if ((cell[0] == cell[1]) && (cell[0] == cell[2]))
    return cell[3];
    }


    if (cell[3] != ' ')
  8. Well you guys are my last hope, my teacher won't...

    Well you guys are my last hope, my teacher won't help me and he teaches with powerpoints and never shows us how exactly we are supposed to apply what we learned........................
  9. ok so now I have included checkWinner, but I am calling the function wrong... how do

    I call the function so it performs checkwinner?




    #include <stdio.h>
    #include <stdlib.h>


    void info()
  10. well that is what I was originally going to put but you have totally disregarded....

    the end game function....now how exactly will I implement it into the int main. I really need help because I am so stummped... suggetions really can't help me here... :(I have all the...
  11. New Tic Tac Toe program. Only need help with int main function...

    ran once but does not display gameboard and I'm 100% sure it's something to do with my int main. I really struggle with calling functions together..... (it's at very bottom)




    #include...
Results 1 to 11 of 11