Search:

Type: Posts; User: nirvana619

Search: Search took 0.01 seconds.

  1. Thanks for replying within the day :) May I...

    Thanks for replying within the day :)

    May I ask for help on another thing? Or should I make a diff thread? It's about file processing.
  2. Oh. Lol, didn't see that. Sorry, so it should be...

    Oh. Lol, didn't see that. Sorry, so it should be temp->inbox == NULL right? Thanks :D
  3. Access Violation(Segmentation Fault) error

    I'm using Dev C btw.
    We're basically trying to make a mail program? Logging in, sending mail to other registered users, etc.

    Each "e-mail" must be dynamically allocated(through the use of linked...
  4. Replies
    4
    Views
    1,724

    Yep, just did. :) Debugging is easier on Dev C++...

    Yep, just did. :) Debugging is easier on Dev C++ than on Pelles C.

    Program fixed now, but I still had to manually point each structure to the next :(
  5. Replies
    4
    Views
    1,724

    May you teach me how it works? All I see are a...

    May you teach me how it works? All I see are a bunch of numbers. :(
  6. Replies
    4
    Views
    1,724

    Can't find where the value changes

    Trying to make a sort of username and password program.
    It appears to work fine, i printed almost everything that gets stored so as to prove that my functions work.

    In the login function, it...
  7. Replies
    9
    Views
    1,443

    Yes you're right. :| A friend helped me and now...

    Yes you're right. :| A friend helped me and now the game's up and running except for that error you have specified. After someone reaches 5 wins, it still asks the other player for a move, then ends...
  8. Replies
    9
    Views
    1,443

    It's right here: switch(turn) {...

    It's right here:



    switch(turn)
    {
    case 0: turn = 1;
    break;
    case 1: turn = 0;
    break;
  9. Replies
    9
    Views
    1,443

    So I removed system("cls"); for a clearer look....

    So I removed system("cls"); for a clearer look. The first output added to 2 to both p1 and p2 alternately until p1 won.

    I found out that I had a duplicate code that added twice to the score so i...
  10. Replies
    9
    Views
    1,443

    I forgot to state that the game only ends when...

    I forgot to state that the game only ends when one person has won 5 games :) Sorry.

    Which do-while did you mean? Tried adding the one you said right after the inner do-while and now, it really was...
  11. Replies
    9
    Views
    1,443

    Stumped on an infinite loop

    Ok guys, be nice. First time posting :)
    I'm a programming amateur. Only learned up to arrays so, nothing advanced yet please. :)

    For a programming exercise, were asked to make a tic tac toe...
Results 1 to 11 of 11