Home c++ Error LNK1561: entry point must be defined

Error LNK1561: entry point must be defined

Author

Date

Category

What does this error mean?

1 & gt; LINK: not found or build failed c: \ users \ cs \ documents \ visual studio 2010 \ Projects \ rolrolgl \ Debug \ Vwe.exe on last incremental link; complete layout in progress
1 & gt; LINK: fatal error LNK1561: entry point must be defined


Answer 1, authority 100%

You may have created an empty project using the Visual Studio wizard and are trying to compile and link it. And since it does not have a main method (for a console application), etc., the collector reports an error.


Answer 2, authority 60%

Right mouse button on the Project – & gt; Properties – & gt; Linker – & gt; All parameters are & gt; Subsystem.
Select – “Console”.
Also don’t forget about main ();


Answer 3, authority 20%

Programmers, Start Your Engines!

Why spend time searching for the correct question and then entering your answer when you can find it in a second? That's what CompuTicket is all about! Here you'll find thousands of questions and answers from hundreds of computer languages.

Recent questions