I was doing a basic "Hello World" program with the code from w3school, but why is the output like this? Why isn't there just a printed 'Hello World' instead it's something difficult to understand.
Can I have an explanation?
CodePudding user response:
The picture shows that the complex content is debug information and output. Eventually your code will run as a result of the Visual Studio console window.
CodePudding user response:
When you run your app, it should open a console window, separate from Visual Studio. Your program output will appear in there.
The complicated stuff you can see is the debugging info VS outputs. You probably don't need to worry about it right now.