Question
C++: HI I need help figuring out what is wrong with this code. Doesnt work for me... THis message pops up----> Severity Code Description Project
C++: HI I need help figuring out what is wrong with this code. Doesnt work for me...
THis message pops up---->
Severity Code Description Project File Line Suppression State Warning LNK4098 defaultlib 'MSVCRT' conflicts with use of other libs; use /NODEFAULTLIB:library
What shall I add or configure to get the code to run smoothly? Thank you
#include
int main(void) { GLFWwindow* window;
/* Initialize the library */ if (!glfwInit()) return -1;
/* Create a windowed mode window and its OpenGL context */ window = glfwCreateWindow(640, 480, "Hello World", NULL, NULL); if (!window) { glfwTerminate(); return -1; }
/* Make the window's context current */ glfwMakeContextCurrent(window);
/* Loop until the user closes the window */ while (!glfwWindowShouldClose(window)) { /* Render here */ glClear(GL_COLOR_BUFFER_BIT);
/* Swap front and back buffers */ glfwSwapBuffers(window);
/* Poll for and process events */ glfwPollEvents(); }
glfwTerminate(); return 0; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started