Translate

Labels

Showing posts with label SETTING CURSOR SIZE. Show all posts
Showing posts with label SETTING CURSOR SIZE. Show all posts

Friday, 7 June 2013

PROGRAM FOR SETTING THE CURSOR SIZE

#include #include #include void main(void)
 {
 clrscr();
 int x,y;
 union REGS regs;
 printf(" Enter the starting line of the cursor(0-4) - "); 
 scanf("%d",&x);
 printf(" Enter the ending line of the cursor - "); 
 scanf("%d",&y);