notepad???

Jan 31, 2008 at 7:22pm
WTH?! I heard you can write an application using a simple text editor like, notepad instead of a compiler. Is that true?! if so, how?
Last edited on Jan 31, 2008 at 7:23pm
Jan 31, 2008 at 7:32pm
You can WRITE the application yes, as C/C++ is pure text, HOWEVER you need to compile it using a compiler.
Jan 31, 2008 at 7:50pm
Yes, you can write an application with a simple text editor. Alot of folks prefer it. They don't like the overhead of a huge development platform. As far as simple editors, PSPAD is nicer, as it highlights your syntax. After you have the source ready ( the .c or .cpp file), Then you compile it.
Last edited on Jan 31, 2008 at 7:51pm
Feb 3, 2008 at 9:21am
In simple terms, the compiler is a program that translates your c code into a language your computer can understand.

The program that you use to write c codes is not a compiler but editor. You can use any ASCI text editor to write codes and then compile them using your favorite c or c++ compiler. I reccomend using mingw from mingw.org.

Topic archived. No new replies allowed.