Search:

Type: Posts; User: KittenAqua

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    1,249

    Apparently, the board no longer wants me to edit...

    Apparently, the board no longer wants me to edit my other post, since it won't let me, so I guess I have no choice but to double post.

    I can comfortably read from files with the use of ifstream,...
  2. Replies
    4
    Views
    1,249

    Thanks, I'll check it out. I'll try that out,...

    Thanks, I'll check it out.

    I'll try that out, and see if I can get it to work, but either way I would need to be able to read from a file before I can make use of it. =P
  3. Replies
    4
    Views
    1,249

    How Do I Read a File to a Program?

    I tried to search Google, and found absolutely nothing simple that could help. Basically, what I need to do is make filter options for a program. I have no idea how to do this at all. The program I...
  4. Replies
    6
    Views
    1,122

    Sorry, I don't know the proper way to properly...

    Sorry, I don't know the proper way to properly format my code.

    *facepalm* No... I just want to point out, before I fix my poorly formatted code, that all of the == operators in their now used to...
  5. Replies
    6
    Views
    1,122

    My program is exiting the while loop.

    Hello, everyone, I am creating a text based RPG. The problem I have is that it is exiting the while loop when the condition is still true. The game is going to have 17 boss enemies. It is supposed to...
  6. Replies
    3
    Views
    1,117

    /facepalm It's the littlest mistakes... it...

    /facepalm

    It's the littlest mistakes... it does work now, thanks for the help!
  7. Replies
    3
    Views
    1,117

    My if statement doesn't seem to work.

    I have the following as code:

    #include <stdio.h>
    main()
    {
    char answer = getche();
    char pi = 3;
    if (answer != pi)
    printf("\a");
    }
  8. Replies
    5
    Views
    1,771

    Thanks for your help, both of you. I'll be making...

    Thanks for your help, both of you. I'll be making the appropriate adjustments to the program, and hopefully it will respond.

    One question though, what's wrong with my compiler?

    EDIT: Apparently...
  9. Replies
    5
    Views
    1,771

    Program Stops Responding.

    I'm having a problem with my program deciding to stop responding. The program is as follows:


    #include <iostream.h>
    main()
    {
    char * q = new char [100];
    char * i = new char [30];
    ...
  10. Replies
    2
    Views
    4,696

    Thanks for responding, it was definitely...

    Thanks for responding, it was definitely something I didn't know, but I still don't understand how to install it. Or compile a library component... sadface... to Google I go!
  11. Replies
    2
    Views
    4,696

    Installing STLport... how do you do it?!

    I'm probably posting this in the wrong section, but I don't know where else to post it. I'm using the Digital Mars compiler and running it from the command line on Windows 7, and it says
    To use...
  12. Replies
    5
    Views
    12,837

    Oh ya... I was using it uninitialized. It was...

    Oh ya... I was using it uninitialized. It was supposed to be the third variable who's value is gotten from scanf(), but I just didn't even realize it. It's not exactly an easy error to find when...
  13. Replies
    5
    Views
    12,837

    Okay, it works now. It stopped giving me that...

    Okay, it works now. It stopped giving me that error. Now, instead, it adds the addresses of the numbers together... but I can go figure that out somewhere else. I don't think it needs to be answered...
  14. Replies
    5
    Views
    12,837

    Program suddenly stops working.

    Hello, I'm fairly new to C, and after taking several examples from the book I decided to write my own. Yet I kept running into several problems with it, so i decided I'd just continue reading, and...
Results 1 to 14 of 14