Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Jayson said:I presume you're working in a Windows enviroment, you could use GDI/GDI+ from the Windows API, GDI/GDI+ can be called from C/C++. Here's an example of a plotter on screen using C# (this can be translated to either C or C++). **broken link removed**
The graph could then be saved to a BMP or a WMF, you'd have to look up how to do that with the Windows API.
Also have a look at this: **broken link removed**
Or if you're only interested in output of a graph
What you could do is bundle GNUPlot with your program and make it silently invoke GNUPlot to create your desired output. To download GNUPlot go to http://www.gnuplot.info.
Have a look here on some discussion on how to do it from C++: **broken link removed**
You can make GNUPlot output a graph to a bitmap like a PNG, BMP or even Postscript.
- Jayson
tom324 said:This board is not the best palace to learn C++ from the beginning. Try with Stroustrup's book and some book related to programming graphic for Windows
Tom