hello command not printing in c++

#include <iostream>

int main() {
    std::cout << "hello";
    return 0;
}
  1. The program includes the input/output stream library.
  2. The main function is defined.
  3. The "hello" message is printed to the standard output using the cout object.
  4. The main function returns 0 to indicate successful execution. ```