> Hi.. What is c compiler that you use and what is best > compiler for c on your knowledge
TCC (Tiny C Compiler) is a free C compiler suitable for learning about C. (I use it for small programs on Windows XP.) http://bellard.org/tcc/ GCC (GNU Compiler Collection) is a fully-featured professional-standard C compiler, also free. (I use it on Gnu/Linux.) I would argue that it's the "best" in the sense that it covers several C language variants, including C89, C99, Objective C and C++, and is capable of building the entire Gnu/Linux operating system (not that one wants to do that every day). Combined with other software tools it's well suited to large, complex projects. http://gcc.gnu.org/ For a beginner, TCC may be more suitable. But if GCC is already installed on your system (as it is for most Unix/Linux systems), use it. David
