I did a quick search and found OpenGL - Win32 apps. Did you see that? The following are other samples and tutorials.
- Tutorial 1 : Opening a window
- How to Setup and Get Started with OpenGL in C++
- LearnOpenGL - Creating a window
- OpenGL Basics - Win32 Tutorial Sample Code
- Getting Started With OpenGL In Visual C++
And probably Visual Studio installs everything we need for OpenGL, we only need to add opengl32.lib as a linker input library for the project. Do you know how to do that in VS? So if you create an empty C++ desktop application and put something like minimal.c into it and add opengl32.lib as a linker input library then it can work just that easily. Except to close the samples from that site (they are very old) I need to click the "x" icon multiple times.