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 JUAN JOSÉ DUQUE SERNA (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 and receive answers from other members of the community.
...