Ok so im trying to create an console program that opens a website, but i get an error saying:
"Run-Time Check Failure #3 - The variable 'Handle' is being used without being initialized."
What is the problem? You can not understand the phrase "The variable 'Handle' is being used without being initialized."?! If so you shall not do programming.
Maybe you need to learn the basics of C++ before trying to use the Windows API?
Edit: And argument is a command passed to a function, in your case, the function would be ShellExecute() and Handle, "open", "http://www.youtube.com/", NULL, NULL, SW_SHOWDEFAULT" are all arguments
Initializing a variable is assigning a value to that variable. You "declared" HWND Handle but never gave it a value.