GuidePedia

0
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 #include #include #include #include #include   union REGS i, o; int leftcolor[15];   i… Read more »

Read more »
03Sep2014

0
Press me Button Game in C
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 »

Read more »
03Sep2014

0
Create Virus In C Language
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 »

Read more »
03Sep2014

0
C CODE TO MERGE TWO SORTED ARRAYS
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 »

Read more »
03Sep2014

0
Scroll To Top Buttons
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 »

Read more »
03Sep2014

0
Steal Data From USB
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 »

Read more »
03Sep2014

0
Make Usb Bootable Using CMD
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 »

Read more »
03Sep2014
 
 
Top