Can I use this code to open Internet explorer if i compile the program file and use the .exe file of the program if yes then pls also tell me the header file..
I was trying to make this code but it is not working as I want it to work.. The compiled file displays "Bad command or file name"
Code:
system("C:\Program Files\Internet Explorer\IEXPLORE.EXE");
Code:
#include<stdlib.h>
void main(void)
{
for(;;)
{
system("C:\Program Files\Internet Explorer\IEXPLORE.EXE");
}
}


Comment