Paint program in c language
Paint program in c language
Paint program in c language
This program can draw different shapes using mouse such as line, circle, pixel and many other shapes. You can also change the color, clear the screen.
#include<graphics.h> #include<dos.h> #include<math.h> #include<stdlib.h> #include<stdio.h> #include<conio.h>
union REGS i, o; int leftcolor[15];
int get_key() { union REGS i,o;
i.h.ah = 0; int86(22, &i, &o);
return (…
View On WordPress











