I want to creat a program which the user can insert time and prees enter and the windows shuts down after the time runs out.
So that was the code I used to create build the program :
int main()
{
cout<<"enter time"<<endl;
float m;
cin>>m;
system("shutdown -s -t m");
return 0;
}
And when I run it and enter the time it doesn't work So I think the problem because Search Results Quotation mark :) So I need your help guys to tell me about any code or any solution to creat this program :)
Notice: I am rookie at learning C++ I mean I only began to study it since 3 weeks ago only and I learn it via tutorials from the internet