jay-r wrote: > i've been reading "Accelerated C++" and started running the first few > codes through dev-c++ compiler. what type of project to i have to use? > windows application, console application, static library or dll? i just > want to run the codes from the book. > > i've been having this problem as well "unable to create makefile.win". > lately i can't run a code and the comment says "empty character > constant" and build error, error 1. > > thanks.
Console application. Basic rule of thumb: main() = console. WinMain() = Windows app. DllMain() = DLL No entry point = static library. There are exceptions but you aren't likely to run into any of them. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task. Stay on task. http://www.CubicleSoft.com/MyTaskFocus/
