Link to home
Start Free TrialLog in
Avatar of pgmerLA
pgmerLA

asked on

how to include a library into a MS VS 2008

Hi, I am a newbie programmer.

I have downloaded http://koolplot.codecutter.org/ library onto my desktop.

I have no idea where in my MS VS folder I have to add it to.

could you walk me step by step on how to make the following code work?

Thanks a lot
#include "koolplot.h"

int main()
{
   Plotdata x(-3.0, 3.0), y = sin(x) - 0.5*x;
   plot(x, y);
   return 0;
}

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of jkr
jkr
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial