Im having problem with this program. in Dev-C++ i countered error that it doesent support long long, so i changed to visual studio, but now im gettign one error but ihave no idea what it is cause it doesent show me what error it is. Where can i see what error it is that it is giving me.
If you're asking what I think you are...Well, you have a tab in the bottom of the screen that's called "Error List". If you don't see that try clicking on View -> Error List, and then it should be visible ( again in the bottom of the screen ).
Your main entry-point is fine. The issue must be within your project configuration. Your project must be setup for something other than a console. To fix this issue, try these instructions:
1)Go to: Project >> [Project Name] Properties. 2)At the top of the dialog box, select the All Configurations list item from the Configuration dropdown list. 3)Expand the Configuration Properties node on the left side. 4)Select the General child. 5)On the right-hand side, find the Configuration Type field. 6)Select the Application list item from the Configuration Type field. 7)Press the Apply button followed by the OK button.
Since your problem was solved, if at all possible, could you post what you did to solve your issue? This way, other users with the same problem will be able to refer to this post for an answer.