Screen Saver Development In C language
SCREEN SAVER DEVELOPMENT IN C LANGUAGE This is a basic program in c language given below which will make a simple screen saver whose screen will change its color with time. First we design simple screen saver in c language then we will move to further for another screen saver designing. This is a simple program in c language ( graphics ). It will give output with blinking color screen again and again. The program is as follow: #include<iostream.h> #include<conio.h> #include<graphics.h> Void main() { int gdriver=DETECT, gdmode, errorcode; int style, midx, midy; initgraph(&gdriver, &gdmode, “”); cout<<”\n\n”; ...
Comments
Post a Comment