C Codes
Beginners
C on Unix
Code Snippets
Data Structures
File Operations
Games Graphics
Gnu-Linux
Hardware
Mathematics
Miscellaneous
Small Programs
Sorting
C > Hardware Interaction Through C sample source codes
Program for Scrolling the Window Down
Program for Scrolling the Window Down #include<stdio.h> #include<conio.h> #include<dos.h> void main(void) { clrscr(); union REGS regs; regs.h.ah = 07; regs.h.al = 5; regs.h.bh = 8; regs.h.ch = 0; regs.h.cl = 0; regs.h.dh = 50; regs.h.dl = 50; int86(0x10,®s,®s); getch(); }
Privacy Policy
|
Link to Us
|
Links