piyush_4love_4ever wrote: > i want to know in which language , the c-compiler is written first
Great question! "Chicken or the egg" problems are something you will experience often in your programming career and you pretty much have to muddle your way through them until you achieve success. The original C compilers were probably written in pure assembler. However, these days, C/C++ compilers and libraries are written in a C and assembler mix. Assembler for the stuff that needs raw performance, C for the rest so the code base can be more easily maintained. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task. Stay on task. http://www.CubicleSoft.com/MyTaskFocus/
