QUOTE(janotte @ 11 Apr, 2009 - 03:44 AM)

QUOTE(Syed Faraz @ 10 Apr, 2009 - 11:16 PM)

my compiler could not find the msoftcon.h
Unless you are prepared to provide us information we can't help you.
What compiler?
What is the exact error message.
Are you going to show us the code or what?
If you aren't going to help us help you expect very little response to your postings.
There is a sample:
#include<constream.h>
#include<msoftcon.h>
struct circle
{
int xco, yco;
int rad;
color fillcolor;
fstyle fillstyle;
};
void circ_draw(circle c)
{
set_color(c.fillcolor);
set_fill_style(c.fillstyle);
draw_circle(c.xco, c.yco, c.rad);
}
int main()
{
init_graphics();
circle c1={15, 7, 5, cBLUE, X_FILL};
circle c2={41, 12, 7, cRED, O_FILL};
circle c3={65, 18, 4, cGREEN, MEDIUM_FILL};
circ_draw(c1);
circ_draw(c2);
circ_draw(c3);
set_cursor_pos(1, 25);
return 0;
}
my turboC++ compiler doesnt find the headerfile, using TurboC++ 3.0 by borland int.