CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: gtbgmaniak

Search: Search took 0.03 seconds.

  1. Replies
    20
    Views
    18,916

    Re: Can I create classes interactively?

    Ok, I just started writing one of the codes when I got to typedef, I need to practise it
  2. Replies
    20
    Views
    18,916

    Re: Can I create classes interactively?

    I'm at page 52. I haven't typed exactly each piece of code, because all of the codes I've seen until now, I've already practiced several times previously.

    I did read everything from the "Lead...
  3. Replies
    20
    Views
    18,916

    Re: Can I create classes interactively?

    I know it won't take two days. Besides the PDF is 886 pages :). My problem is that I don't really have where to buy the book from, so the PDF version is the only possibility right now.

    I know it...
  4. Replies
    20
    Views
    18,916

    Re: Can I create classes interactively?

    Ok, i downloaded SAMS Teach yourself C++ in an hour a day. I'm reading it right now. What do you recommend me to start after finishing this one?
  5. Replies
    20
    Views
    18,916

    Re: Can I create classes interactively?

    Well, actually, that's my problem, I'm a student and they tell us to use the Deitel book, maybe because the university has some contract with the editorial, I don't know, but anyway, thanks for the...
  6. Replies
    20
    Views
    18,916

    Re: Can I create classes interactively?

    Would you suggest me a good one? I'm reading Deitel's How to program in C++, I don't know if it's really good, but sometimes I feel the topics aren't ordered very well. Anyway, I'm still a beginner,...
  7. Replies
    20
    Views
    18,916

    Re: Can I create classes interactively?

    So, technically the first thing I am asking is impossible to do in C++?
  8. Replies
    20
    Views
    18,916

    Re: Can I create classes interactively?

    I mean, I have my class declaration for example:




    class Number{

    public:
    Number();
    void getNumber();
  9. Replies
    20
    Views
    18,916

    Can I create classes interactively?

    I mean I was asking myself whether I could create classes like for example...

    Instead of having to declare a limited number of classes and declare them specifically with names in the code, the...
  10. Re: Question about infinite word/phrase input, terminated by a specific word

    That was just what I needed, put in a very easy to understand way.

    Thanks a lot Lindley!
  11. Re: Question about infinite word/phrase input, terminated by a specific word

    #include <iostream>
    using std::cout;
    using std::cin;
    using std::endl;
    #include <string>

    const int MAX=255;

    int main(){
  12. Re: Question about infinite word/phrase input, terminated by a specific word

    Could you put an example with C++ code, because I don't really know how to use vectors yet. I mean I did something similar with an array but it was finite. I have never used vector before, I more or...
  13. Re: Question about infinite word/phrase input, terminated by a specific word

    I mean the idea of the program is:

    The user starts inputting words or phrases, the word or phrase ends when the user presses enter. The program will keep asking for a word or a phrase until the...
  14. Re: Question about infinite word/phrase input, terminated by a specific word

    So, what you basically mean is a vector in a cycle?
  15. Re: Question about infinite word/phrase input, terminated by a specific word

    So, you're saying I should learn how to use the vector library?

    What about the infinite cycle, terminated by "END"?
  16. [RESOLVED] Question about infinite word/phrase input, terminated by a specific word

    Hey everyone. I'm new here, and I'm kinda newbie with C++. So, here's my question.

    I want to make a program in C++ which receives phrases by the user, strings or char vectors, not decided which...
Results 1 to 16 of 16





Click Here to Expand Forum to Full Width

Featured