Plotting in C++?

Is there any way to plot any function in VC++ 2010? in Forms?
Last edited on
http://www.cplusplus.com/articles/jLzyhbRD/
This would be better asked on the Visual C++ MSDN Forums
Last edited on
I wouldn´t have called that a bad question.

C++ does not natively support any graphics. You would either need to interface with the WinAPI (which can be very difficult) or you can just implement an existing library.

Some examples are:
WxWidgets
Qwt

Hereś something that might help:
http://stackoverflow.com/questions/296199/is-there-any-out-of-the-box-2d-3d-plotting-library-for-c
thank you guys.
Topic archived. No new replies allowed.