Do you want to know how to open a link (URL) contained in a string, in C++? This quick article will show you how.
Open an URL in C++
Try this:
#include <windows.h>
.
char* linkChar="[http://www.google.com]";
.
ShellExecute(NULL, NULL, linkChar, NULL, NULL, SW_SHOWNORMAL);
Photo: Unsplash