Search:

Type: Posts; User: Quillion

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    4,340

    Sorry for a non C++ related question, but how...

    Sorry for a non C++ related question, but how would I save something as a ASCII text?
    I tried notepad and notepad++ and gedit and nothing
    And looked up google too
    Thanks for all your help you gave...
  2. Replies
    8
    Views
    4,340

    Yeah I am using notepad++. What should I use...

    Yeah I am using notepad++. What should I use then?
    Or should I input some kind of other character, in hopes it will bug into the correct one?
    And yes you are right unicode is UTF8
    Amazing how you...
  3. Replies
    11
    Views
    1,566

    Ok so here is how I do it As soon as I start my...

    Ok so here is how I do it
    As soon as I start my program I use



    srand(GetTickCount());


    And then when I want random I use
  4. Replies
    8
    Views
    4,340

    Pretty long but ok getline(quizData,...

    Pretty long but ok



    getline(quizData, line);

    while(line.compare("qend")!=0)
    {
    string assembler = "";
  5. Replies
    8
    Views
    1,281

    Oh crap ok fine I am sorry I did not read the...

    Oh crap ok fine I am sorry I did not read the question correctly

    here is better version



    string StringToWhatever(string strToConvert)
    {
    bool space = false; // to see if space was...
  6. Replies
    8
    Views
    1,281

    Ok well you get the general idea, just change the...

    Ok well you get the general idea, just change the string name -_-ll
  7. Replies
    11
    Views
    1,566

    Just bad luck lol

    Just bad luck lol
  8. Replies
    8
    Views
    1,281

    knock yourself out string...

    knock yourself out



    string StringToLower(string strToConvert)
    {//change each element of the string to lower case
    for(unsigned int i=0;i<strToConvert.length();i++)
    {
    ...
  9. Replies
    8
    Views
    4,340

    Reading special characters off a file

    Hello to all, kinda new here, but here goes
    So I was making a multiple choice quiz program, that reads multiple choice questions off of a file, but I have encountered a problem.
    While reading "...
Results 1 to 9 of 9