I am studying big c++. I am working with their graphical headers. here Is the code
{code]
#include "ccc_win.h"
int ccc_win_main()
{
Point p(1, 3);
cwin << p << Circle(p, 2.5);
return 0;
}
I keep getting the following error.
>------ Build started: Project: ch3c, Configuration: Debug Win32 ------
1>LINK : fatal error LNK1561: entry point must be defined
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
I will work to solve this error. I am using vs 2010.
?