1#include<windows.h> 2// #include <bits/stdc++.h> 3using namespace std; 4 5int main() 6{ 7 char url[100] = "https://www.youtube.com/watch?v=G31AUfWMtZw"; 8 ShellExecute(NULL, "open", url, NULL, NULL, SW_SHOWNORMAL); // open the url to youtube.com 9 return 0; 10} 11