Question:Write a c program to display mouse pointer? 

Answer 
#include <dos.h>
#include <stdio.h>
void main()
{
union REGS i,o;
i.x.ax=1;
int86(0x33,&i,&o);
getch();
}
 

+ ExplanationNot Moderated
+ Report
Total Preview: 1038
Write a c program to display mouse pointer?
Copyright © 2024. Powered by Intellect Software Ltd