I install GLEW library into the Visual Studio:
x64/bin/glew32.dll to %SystemRoot%/system32
x64/lib/glew32.lib to {VC Root}/Lib
include/GL/glew.h to {VC Root}/Include/GL
include/GL/wglew.h to {VC Root}/Include/GL
And add library in Linker > Input: glew32.lib and write #pragma comment
#pragma comment(lib, "opengl32.lib")
#pragma comment(lib, "glu32.lib")
#pragma comment(lib, "glut32.lib")
#pragma comment(lib, "glew32.lib")
#include <iostream>
#include <windows.h>
#include <glew.h>
#include <glut.h>
But Visual Studio continues to write error:
1>Core.obj : error LNK2001: unresolved external symbol __imp____glewBindVertexArray
1>Core.obj : error LNK2001: unresolved external symbol __imp____glewGenVertexArrays