Notice: Undefined offset: 105522 in /var/www/html/qa-external/qa-external-users.php on line 744
Help with system("cls") and system("pause") in c++ - OnlineGDB Q&A
Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Help with system("cls") and system("pause") in c++

+1 vote
asked Apr 21, 2019 by (130 points)

what is wrong with this code? i want to implement it in a little proyect and i need help!

1 Answer

–1 vote
answered Apr 25, 2019 by ?????? ? (120 points)
#include<iostream>

using namespace std;

int main(){

cout<<"Hello, world!"<<'\n';

cin.get();

cout<<"Finished\n";

return 0;

}
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...