I can get the first example program to compile and run, but when it runs, it doesn't do what it (presumably) is supposed to do, and that is to create a blank window with a title that you specify. It just pops up with a Command Prompt window that after a second or so displays the "pause" message ("Press any key to continue...").
Here's the code, just in case there might be a problem that I missed:
I don't include a return statement at the end of main() on purpose, because the tutorial doesn't have one either.
I think I have everything in order...maybe. All I know is that the program compiles and runs, and that Visual C++ appears to be accepting my paths that I gave it for GLUT dependencies.
Thanks for the help. I've changed the code in my main(), and added a rendering function that draws a triangle on screen, because (for whatever reason) it won't work without one. I get an error saying something about that there's no display callback, and I'm guessing that the rendering function is what it's talking about.
In any case, my problem appears to be solved (for now). Here's the revised code: