open webpage c++ code example
Example 1: open a url with dev c
#include <windows.h>
void main()
{
ShellExecute(NULL, "open", "http://dreamincode.net",
NULL, NULL, SW_SHOWNORMAL);
}
Example 2: open url from dev cpp
%x(open https://google.com)