DEV Community

Mohammed Salah
Mohammed Salah

Posted on

C++ 3rd Code ( using cin.get alternate system("pause")

#include <iostream>
using namespace std; 
int main()
{
cout<<" Hello C++ World "<<endl; 
cin.get();
return 0 ;
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)