In C in Windows, how do I open a website using the default browser? In Mac OS X, I do system(\"open http://url\");
system(\"open http://url\");
In Windows, you can use start http://url on the command line to open an URL in the default browser. However, this seems to be specific to the command prompt and is not a real executable, so I don't think you can start it from your C/C++ program.
start http://url