Page 1 of 3 123 LastLast
Results 1 to 10 of 22

Thread: C++?

  1. #1
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default C++?

    Just wondering if the "Other" forum could be used as a C++ place thingy.
    - Mike

  2. #2
    Join Date
    Aug 2006
    Posts
    42
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    It is other, isnt it?

  3. #3
    Join Date
    Aug 2006
    Posts
    42
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    wow u know c++ thats incredible i was gonna start learning C but i gues i changed my mind

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    I see no reason why not.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  5. #5
    Join Date
    Aug 2005
    Posts
    971
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Umm... what about C too??

  6. #6
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    I feel like I've wasted my money.. I bought a C++ book, but didn't realize it was only console C++, which is COMPLETELY diferent from Win32 C++, which I'm trying to do now, without Microsoft's Visual C++.. I would really like some help.
    Last edited by mburt; 08-15-2006 at 01:39 AM.
    - Mike

  7. #7
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Well obviously if C++ is allowed C will be too

    Eeh? You bought "a C++"? You mean you bought a C++ compiler? That's a total waste of money. There are plenty of good compilers out there, such as the Free Dev-C++.
    There's no such thing as a console-only compiler. There are ways to create GUI apps with every compiler. The usual toolkit for Windows applications is the Microsoft Foundation Classes (MFC) which are, insofar as I'm aware, only available if you buy MSVC++. However, your application will not only be as good but actually probably be considerably better if you use a Free toolkit such as wxWidgets or Qt, since you will gain platform portability and an actual decent toolkit.
    MFC is fast, but as toolkits go, it lacks a lot.

    "Win32 C++" is generally defined by two things: COM and MFC. Neither is actually necessary to create workable, graphical Windows applications.

    However, if you didn't know this already, it's probably not time for you to start trying to create GUI apps yet.
    Last edited by Twey; 08-14-2006 at 06:57 PM.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  8. #8
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    This is quite ironic actually, I made a typo, and left out the word book, secondly the compiler I have is Dev C++ (comes with the book I bought)
    - Mike

  9. #9
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    There's no such thing as a console-only compiler.
    Yes, I know that, but making Windows programs in Visual C++ is way easier.
    - Mike

  10. #10
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    Okay, to say the least, this is the C++ (I guess you could say..) that I've learned: (a basic "Hello World" program)

    Code:
    #include <iostream>
    using namespace std;
    int main() {
    cout << "Hello, World!";
    system("PAUSE");
    return 0;
    }
    I figured out that kind of C++ very easily. Then I wanted to make a Windows App, but I need some guidance. Links, tutorials, whatever.
    - Mike

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •