Help me find the most common text compiler for C ++. I had Borland Visual C ++ and others (visual), and the self-help manual that I have is designed for text editing the source code. What is a small text and simple compiler for learning C ++ advise?

Closed due to the fact that it is necessary to reformulate the question so that you can give an objectively correct answer to the participants PashaPash , torokhkun , korytoff , Alex , Streletz 18 Nov '15 at 11:26 .

The question gives rise to endless debates and discussions based not on knowledge, but on opinions. To get an answer, rephrase your question so that it can be given an unambiguously correct answer, or delete the question altogether. If the question can be reformulated according to the rules set out in the certificate , edit it .

    3 answers 3

    There are no text compilers. An ordinary compiler is present in any package of the visual environment. In any case, it is a separate program that breaks the source code and gives the machine code that the computer perceives. And the compiler can be called manually. Parameters are set via the command line. Simply in the case of visual environments, the compiler's call is hidden and its entire output goes through the visual environment.

    In addition, Borland Visual C ++ is not. There are Borland C ++, Borland / Inprise / Embarcadero C ++ Builder and Microsoft Visual C ++ (included in MS Visual Studio). These are the most famous IDEs for C / C ++.

    PS: if you have Linux, the easiest way is to use gcc / g ++. It is very easy to use:

    gcc source_file.c

    ./a.out

    • For windows, take the MinGW - avp

    dev c ++

      mingw?

      • there - cygwin? - gecube