I'm working on learning C++ from a pdf manual and am using MS VisualStudio 2010 ultimate edition when I put the code in below it gives me this error message what does this mean and how can I fix it?
'"C:\Users\miller2249\Documents\Visual Studio 2010\Projects\my first string\Debu
g\my first string.exe"' is not recognized as an internal or external command,
operable program or batch file.
Press any key to continue . . .
that is the error message I recieve and this is the code I am typing in
1 2 3 4 5 6 7 8 9 10 11
// my first string
#include <iostream>
#include <string>
usingnamespace std;
int main ()
{
string mystring = "This is a string";
cout << mystring;
return 0;
}