How To open URL in browser using C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h> 

int main(void)
{
    system("start firefox.exe www.collectivesolver.com");
    system("start iexplore.exe www.collectivesolver.com");
    system("start chrome.exe www.collectivesolver.com");
       
    return 0;
}
 



answered Jan 22, 2015 by avibootz

Related questions

...