I was trying to run my first C++ code in Visual Studio, by creating a blank project and then creating a C++ source file in the project.
But, when I try to run, it just gives this error message.
When I go and look in the folder, I see that another folder with the same name has been created, and there is the file, but that is not the right directory.
This is my code, by the way:
#import <iostream>
int main(){
std::cout<<"Hello World";
return 0;
}


