Search:

Type: Posts; User: porialex

Search: Search took 0.00 seconds.

  1. Replies
    9
    Views
    3,354

    Huh, this is definitely more efficient. ...

    Huh, this is definitely more efficient.

    Thanks for the tip on the macros, they're a force of habit.
  2. Replies
    9
    Views
    3,354

    How's this? #include #include...

    How's this?


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


    #define PAUSE system("PAUSE")
    #define CLEAR system("CLS")
  3. Replies
    9
    Views
    3,354

    That's exactly it.

    That's exactly it.
  4. Replies
    9
    Views
    3,354

    Hmm... seems reasonably easier. I wasn't sure if...

    Hmm... seems reasonably easier. I wasn't sure if I could get away with that.
  5. Replies
    9
    Views
    3,354

    Manipulating a large, random string

    I can't quite wrap my head around a good approach to to randomly printing a word (as a string of characters) into an already printed box of random letters. I figure this would all be done to a file,...
  6. Replies
    5
    Views
    1,386

    Thank you very much to Adak. The program runs...

    Thank you very much to Adak. The program runs correctly now (though I'll have to fix the sorting issue).
  7. Replies
    5
    Views
    1,386

    My compiler will run just fine. I'm using Code...

    My compiler will run just fine. I'm using Code Blocks linked to MinGW.

    As for the line:


    if(strcmp(str[i], str[j]));

    that was a last minute change in my code I forgot to reconcile. It was...
  8. Replies
    5
    Views
    1,386

    Help Sorting 2D String Arrays

    I'm trying to write a simple program that will (1) take in a set of user strings, (2) alphabetize them based on the first letter and (3) insert them into a text file.

    I'm doing fine with (1) and...
Results 1 to 8 of 8