
It is possible to run graphics program using Turbo C in vista. All you have to do is to run your OS in SAFE MODE & use <graphics.h> header file. And you must have ‘BGI’ directory present in your TC folder. (C:\\TC\BGI)
Go to BGI directory (folder) & copy BGIDEMO.C. Now go to TC\BIN and paste it. After That Open up your compiler which is in BIN folder (tc.exe).
If your compiler opens up in small window don’t panic. Press ALTER+ENTER to maximize it.
Now open BGIDEMO.C using your compiler. (File>Open or press F3). Now Run it. If the program give no response use these codes after the main function:
int gd=DETECT, gm;
initgraph(&gd,&gm,”c:\\TC\\bgi”);
Now save it and Run.
Happy coding.





good