runtime error
"not recognized as an internal or external command, operable program or batch file"
# include <stdio.h>
# include <stdlib.h>
# include "iostream"
using namespace std;
int main()
{
char ch;
cout<<"Do you want to Logoff your computer now(y / n) \n " ;
cin >> ch;
if (ch == 'y' || ch == 'Y'){
system("C:\\Computer");
cin >> ch;
ch=getchar();
}
else
cout << "Not Working";
system("pause");
return 0;
}