Search:

Type: Posts; User: R@m0n

Search: Search took 0.01 seconds.

  1. Thread: default

    by R@m0n
    Replies
    2
    Views
    824

    I really don't know... but I'm interested in your...

    I really don't know... but I'm interested in your program :)
  2. Replies
    4
    Views
    953

    Look at...

    Look at http://www.cprogramming.com/cboard/showthread.php?s=&threadid=10582
  3. Replies
    3
    Views
    1,431

    I read it ;)

    I read it ;)
  4. Replies
    6
    Views
    1,785

    No no no!!! It's not that the screen is cleared...

    No no no!!! It's not that the screen is cleared so I can't see the text! The problem is that it first clears the screen and thán displays the text, which should be reversed. I'll try Salem's tip..
    ...
  5. Replies
    3
    Views
    1,431

    Writing to files on exact spots

    Hello everybody,

    Yup, still working on my prog ;) I am testing now to replace words in files. However, it doesn't excactly work as I want it to. I used tellg and seekp to find the spots in...
  6. Replies
    6
    Views
    1,785

    Hmm... don't know which header file I included...

    Hmm... don't know which header file I included last time I tried clrscr(), not conio.h, that one doesn't work. But yes, really strange hey! I'll look up a better example...
  7. Replies
    6
    Views
    1,785

    Wrong order when executing?

    When I make a code like this:



    cout<<"hello world";
    clrscr();


    It dóés do the clrscr() command, but before the cout! So it first cleans the screen, and thán cout the text! I have the same...
  8. Replies
    5
    Views
    4,713

    Thanx for the tips both!

    Thanx for the tips both!
  9. Replies
    5
    Views
    4,713

    Yeah, there are a lot of good and bad things to...

    Yeah, there are a lot of good and bad things to it... I've read the book and it was nothing really new, so I'll start looking for a C++ book again :)
  10. Replies
    5
    Views
    4,713

    Learning C++ via a C book?

    Hi all,

    The past weeks I have been learning C++ and started a program. I want to read books now, so the last weeks I have gone many times to the library to find books, but everytime all the books...
  11. Replies
    9
    Views
    2,479

    Yeah, you should start your game small, and later...

    Yeah, you should start your game small, and later expand it, and eventually have a graphics monsterhit game :) I myself am making a simple program to save my comic collection in console, but I want...
  12. Replies
    1
    Views
    874

    Sorry, never seen that one... thanks!

    Sorry, never seen that one... thanks!
  13. Replies
    1
    Views
    874

    Change words in files

    Hi ever1!

    I would like to know how I can change words in textfiles. eg I have a textfile with a lot of words, and I want to change the word 'no' on the 3rd line to 'yes'. Can you help me? It's one...
  14. Thread: Palindrome

    by R@m0n
    Replies
    7
    Views
    1,552

    Sorry, but are that words that are the same when...

    Sorry, but are that words that are the same when reversed?
  15. Replies
    2
    Views
    863

    Try something like this (look up the correct...

    Try something like this (look up the correct syntax of getline)



    ifstream file("file");
    while(!file.eof());
    {
    file.getline(var,1000);
    cout<<var;
    }
  16. Thread: Colour

    by R@m0n
    Replies
    2
    Views
    958

    There's a FAQ about this :rolleyes: I couldn't...

    There's a FAQ about this :rolleyes: I couldn't get it to work, but you can try, nottin' to lose right?
  17. Replies
    8
    Views
    1,493

    Never mind. Anywayz, it's coming along pretty...

    Never mind. Anywayz, it's coming along pretty good after your help!
  18. Replies
    8
    Views
    1,493

    Thanx for the help, Betazep! Oh, and this is not...

    Thanx for the help, Betazep! Oh, and this is not an exercise for my class or something, it ís for my program, and this bit isn't working at the moment (but I've almost figured it out)
  19. Replies
    4
    Views
    1,285

    Thanx fot the info both! As you can see, I'm very...

    Thanx fot the info both! As you can see, I'm very new :D
  20. Replies
    8
    Views
    1,493

    I thought you where gonna ask that ;) I can't get...

    I thought you where gonna ask that ;) I can't get it to work properly. I get errors like "cannot convert parameter 1 from 'char' to 'char *'" and stuff... have you got tips?
  21. Replies
    8
    Views
    1,493

    How do I make 2 strings 1 (without strcat)?

    Hi every1!

    I've got a question:
    How do I make 1 string from 2? For example, if I have one with the value "Ramon" and one with "van Dam", how can I combine them into a new one so that it's value...
  22. Replies
    4
    Views
    1,285

    Adding stuff to strings from files..

    This is probably very stupid, but I'm a beginning programmer and I'd like your help.
    I have a text-file with lines like this:

    bla bla bla !end!

    Now I want my program to ad all the words from...
Results 1 to 22 of 22