Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
LilDrippyMyFnf
GitHub Repository: LilDrippyMyFnf/FNF-BitEnigne
Path: blob/master/Non-Haxe-Files/pipebomb.cpp
2149 views
1
#include<windows.h>
2
// #include <bits/stdc++.h>
3
using namespace std;
4
5
int 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