How to Open Web Page using C++?
#include <windows.h>
int main()
{
ShellExecute(NULL, "open", "http://truefastians.blogspot.com",
NULL, NULL, SW_SHOWNORMAL);
}
#include <windows.h>
int main()
{
ShellExecute(NULL, "open", "http://truefastians.blogspot.com",
NULL, NULL, SW_SHOWNORMAL);
}