Öffnen Sie eine URL in C ++

Problem
Wie öffne ich einen in einem String enthaltenen Link (URL) in C ++?
Lösung
Versuche dies:
#include. char * linkChar = "// www.google.com"; . ShellExecute (NULL, NULL, linkChar, NULL, NULL, SW_SHOWNORMAL);
elcactus75 für diesen Tipp!