Whenever I run my code a command prompt window appears and says "process returned 32762 (0x7FFA) execution time .009 seconds press any key to continue." I looked on google and couldnt find a solution.
I expect it to print "hello world"
here is my code
// my first C++ program
#include <iostream>
int main() {
std::cout << "Hello, World";
return 0;
}