my Program command as same as the lesson!
#include
int main()
{
std::cout << “Hello, World!”;
return 0;
}
Can help me find out why it is not showing up Hello World! text on terminal?
here is the Image
my Program command as same as the lesson!
#include
int main()
{
std::cout << “Hello, World!”;
return 0;
Can help me find out why it is not showing up Hello World! text on terminal?
here is the Image
That just shows that you compiled successfully and you can see in the explorer view that the executable it created is there. You just type its name to execute it.
triplex.exe
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.