Wednesday, February 19, 2014

C Program which delete itself

#include
#include
#include
void main()
{
printf(“This program will destroy itself if u press any key!!!\n”);
getch();
remove(_argv[0]);/*array of pointers to command line arguments*/
}

No comments: