Hi to all
I am newbie here, I am searching for new compiler because my compiler is old version I cant find a free compiler in other website. Someone who help my needs or tell me the site were i can download for free thank you very much
>.> I swear to god, the next person who recommends ONE IDE which JUST so happens to be VC++, I'm quitting publicly helping people.
List of compilers:
Visual C++ //Cons: Windows OS dependant. Compiler depends on a runtime file. PROS: GREAT documentation. Great for Microsoft only applications
MinGW //Pros: Majority compiler. Very simple to use if you know what your doing. Extended amount of tools. Cons: Produces bulky code though which can be a downside.
Cygwin //If your coding for Linux using System Calls, this is what you want. CONS: Makes you drag around a dll if your using the POSIX layer included.
Digital Mars++ //Getting outdated.
Tiny C // C only
Borland C++ //Also getting outdated
Intel C++ // Commercial version gives better performance but the trial gives full functionality to an extent
MinGW doesn't produce specially big executables except when the program is too short. There's an initial investment of ~200 KB for including iostream, after which the file only grows with the size of the program.
I have, however, seen MinGW produce blatantly wrong behavior in perfectly valid code. Namely, while redirecting output to files, the output would randomly redirect to the wrong file (e.g. stderr would go to stdlog.txt for no apparent reason), or random lines would be missing. Since then, I don't use it for any serious coding.