How to install   lcc-win32

This is a C compiler from http://www.cs.virginia.edu/~lcc-win32/
It consists of an IDE  and a C compiler based on the work here:  http://en.wikipedia.org/wiki/LCC_(compiler) 
There are two main components:  "lccwin32.exe"   the compiler installation file (include everything),  and  the manual  "manual.exe".  You install the compiler first, then the manual.   The manual will give you "help file" for the use of the compiler and the C libraries.

How to use lcc-win32

1  Do  Project > Create
2  Set the name of the project  for example   "mycompiler"  then set the working directory by Browse then Ok.
3  Set type of project (default  Console Application).  Do  Create
4  It will ask "Do you want to use wizard..."  do No.  Then the source directory will open, include all relevant files. Do Open and Ok.
5  You will have Compiler settings, do Next, Linker setttings, do Next, Debugger settings, do Finish.

Then all source files will be opened in the editor windows.  To compile them you do Compiler > Make (or F9).  The output will be "mycompiler.exe" at the working directory / lcc that  you set.  You can change the project setting (such as color, directory, type of output etc.) by Project > Configuration.

You can find document to C library in Help > Standard library.

Good luck

2 Aug 2011