Question:Write the c program to switch the 256 color graphics mode 

Answer 
#include<stdio.h>
#include<dos.h>
void main()
{
   int x,y,b;
   union REGS i,o;
   i.h.ah=0;
   i.h.al=0x13;
   int86(0x10,&i,&o);  
   getch();
}
 

+ Report
Total Preview: 1062
Write the c program to switch the 256 color graphics mode
Copyright © 2024. Powered by Intellect Software Ltd