#include #include using namespace std; int main(){ cout << "This is c++!\n"; string command = "who"; command += " -b"; return system(command.c_str()); }