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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!