Hello all, I am new to coding entirely. I am trying to use accelerated c++ to get my basic learning out of the way, but I cannot get the source file for hello world to run. When I open a new project in Visual Studio Ultimate 2013 it starts with the following. What am I doing wrong here, maybe how Im adding the source?is there compatibility issues or something with this type of code?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
"Module Module1
Sub Main()
End Sub
End Module "
and the code that im trying to add and run from a given source file is this
// a small C++ program
#include <iostream>
int main()
{
std::cout << "Hello, world!" << std::endl;
return 0;
}
My apologies for the late reply, I was very preoccupied at work. Thank you very much, that was definitely the issues. Im sorry for the super newb question :P