<ccc_win.h> no such library

i try tis code from book...


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <ccc_win.h>

int ccc_win_main(){

	point top_left(1,3);
	point top_right(1,4);
	point bottom_left(2,3);
	
	line horizontal (top_left,top_right);
	line vertical(top_left,bottom left);
	
	cwin << horizontal << vertical ;
	
	horizontal.move(1,0);
	vertical.move(0,1);
	
	cwin << horizontal << vertical ;
	
	return 0 ;
}


why my compiler show : “no such library?”

how can i solve tat problem?
i am using MinGW g++
thx
Maybe you don't have ccc_win.h on your system, or the compiler doesn't know where it is.

Try following the directions according to this page, http://www.wright.edu/~dale.nelson/cs240/instructions.html
Topic archived. No new replies allowed.