What software is needed to program in C ++?
I am new to PHP experience.
It seems that this question does not correspond to the subject of the site. Those who voted to close it indicated the following reason:
Visual Studio 2010 Express is a possible choice to start programming under Windows, the express version is completely free.
ps I also advise you to pay attention to C #, as for a beginner this language is much easier to learn, especially since php will be much smoother due to the fact that you don’t have to understand memory control. You can write in the same VS Express.
Qt Creator . Although the link is not only IDE, but the SDK as a whole. Well, actually a couple of textbooks
Since the platform is not specified:
All links google by product name.
When learning programming languages. I recommend EVERYTHING to do it yourself without the code-completion feature and without any debuggers! Your best debugger is your hands and head. Hands must remember how to write correctly syntactically. And the head must memorize the idioms and approaches used in the language.
Write in Notepad ++ or Sublime Text.
Before compiling, look back and look at your code. Ask yourself "Will it compile exactly?" and only then compile. So you better learn the language.
Development environments simplify the lives of those who go on to solve "combat" tasks.
Source: https://ru.stackoverflow.com/questions/12570/
All Articles