Here's the problem: when compiling, it gives an error "invalid conversion from 'int' to 'int*' [-fpermissive]" on the line 3 of this example code.
Originally, I didn't have the code as I do now, what I had it as caused errors, and gave me a recommendation, "try ____", which got me to where I am now. I've searched for the error it gave me (invalid conversion from...) and none of the pages I'd seen had actually had a fix for the example I have, so I look up my error with extra search terms like "opengl" and "glut", which gave one result that had a fix, the only problem is, the compiler still gave an error.
Here is an example of the code, shortened down to show only what is causing the problem
#include<windows.h>
#include<GL/glut.h>
main(){
glutInit(_argc,_argv);
}