Advertisement
Guest User

graphics program frame

a guest
Jun 6th, 2014
455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <conio.h>
  2. #include <graphics.h>
  3.  
  4. void main(){
  5.  
  6.     int driver, mode;
  7.     driver = DETECT;
  8.     initgraph(&driver,&mode," ");
  9.  
  10.     /*
  11.      *Code here
  12.      */
  13.  
  14.     getch();
  15.     close graph();  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement