For graphics programming in C there is a Graphics library graphics.h but what to do in C++
I am using BCC 5. Whenever i try to include graphics.h in my C++ program, it shows an error message like ''No such file''. Please help
graphics.h is a nonstandard (and extremely outdated) library. The reason it doesn't exist is because it hasn't been bundled with compilers in decades.
Switching to TurboC++ as anandkrishnan is suggesting is probably a bad idea... as that is also ancient.
A better thing to do would be to use a modern compiler, and a modern graphics lib.
Get the latest GCC or MSVS compiler. And look into one of the following graphic libs: SFML 2.0, SDL 2.x, Allegro. (SFML 2.0 is my personal favorite of the 3)
Well we are studying cpp at school. Our textbooks are based on old cpp. So i have to use ANCIENT <graphics.h> on the ANCIENT turbo ccp.
thanks for the info