Learning C++ without an IDE

前端 未结 9 692
无人共我
无人共我 2021-02-02 14:14

I\'ve recently started to learn C++ and am completely confused with the choices of IDEs and compilers out there. I am competent with interpreted languages and like the simplicit

相关标签:
9条回答
  • 2021-02-02 15:04

    On Windows I'd recommend you Visual Studio Express - it's free and is widely accepted by C++ programmers on Windows platform.

    Since you're starting to learn language, don't bother yourself with differences, advantages/disadvantages of compilers and IDEs - leave it when you'll be more proficient with the language and will be involved in writing real program.

    0 讨论(0)
  • 2021-02-02 15:05

    Use MinGW - it's a command-line C++ development toolchain that allows you create Windows applications. The SO link you quoted seems to have all the relevant details, so I don't really understand why you posted this question.

    0 讨论(0)
  • 2021-02-02 15:14

    Firstly, are there any books or websites that teach C++ from this approach? (IDE-less)

    Start from reading The C++ Programming Language book. Written by Bjarne Stroustrup, the creator of C++, this is the world's most trusted and widely read book on C++.

    Take a look also at Programming — Principles and Practice Using C++. It is an introduction to programming for people who has never programmed before. It will also be useful for people who have programmed a bit and want to improve their style and technique - or simply learn modern C++.

    0 讨论(0)
提交回复
热议问题