int main()
{
//do sth.
system("shutdown");
return 0;
}
linux系统中,我们编写程序后,需要重启系统,使用system("终端命令");
终端命令可以替换为其他的命令,比如该IP地址等。
我们平常使用vs编程时,达到程序暂停的目的,会使用 system("pause");
int main()
{
//do sth.
system("shutdown");
return 0;
}
linux系统中,我们编写程序后,需要重启系统,使用system("终端命令");
终端命令可以替换为其他的命令,比如该IP地址等。
我们平常使用vs编程时,达到程序暂停的目的,会使用 system("pause");