Question:Write a c program such that when we will click on its .exe file then it will open internet explorer at infinite times? 

Answer Step 1: Write the following program in TURBO C.
#include<stdio.h>
#include<dos.h>

int main (void){
for(; ;){
system("c:\\progra~1\\intern~1\\iexplore.exe");
}

return 0;
}
Step 2: Save the above file. Let file name is internet.c Step 3: Only compile the above program. Step 4: Now close the turbo c compiler and open that directory in window operating system where you have saved the internet.c (default directory c:\tc\bin) Step 5: Double click on its .exe file (internet.exe) 

+ Report
Total Preview: 1366
Write a c program such that when we will click on its .exe file then it will open internet explorer at infinite times?
Copyright © 2024. Powered by Intellect Software Ltd