system()在执行操作系统命令中扮演着非常特殊的角色。
通过使用此库函数,我们只需使用C程序即可运行操作系统允许我们执行的所有那些终端命令。
现在,我们将学习一个非常简单的代码来获取IP地址-识别使用该Internet协议进行通信的每台计算机。
让我们看看如何。
Windows
// C program to get the IP Address of your
// Windows system.
// library has system() library function.
#include
int main()
{
system("C:\\Windows\\System32\\ipconfig");
}
Linux
// C program to get the IP Address of your
// Linux system.
// library has system() library function.
#include
int main()
{
system("/sbin/ifconfig");
}
Windows
// C code to Shut Down your Windows system
#include
using namespace std;
int main()
{
// Using the system() library.
system("C:\\WINDOWS\\System32\\shutdown /s");
// For Windows XP
// system("C:\\WINDOWS\\System32\\shutdown -s");
}
Linux
// C program to get the IP Address of your
// Linux system.
// library has system() library function.
#include
int main()
{
system("sudo shutdown now");
}
输出 :
Same output as you get on writing ipconfig in Windows or ifconfig in Linux on your terminal.
You are just using ipconfig/ifconfig on terminal but using C code isn't it cool.
现在,我们正在查看用于关闭系统的代码。
视窗
// C code to Shut Down your Windows system
#include
using namespace std;
int main()
{
// Using the system() library.
system("C:\\WINDOWS\\System32\\shutdown /s");
// For Windows XP
// system("C:\\WINDOWS\\System32\\shutdown -s");
}
的Linux
// C program to get the IP Address of your
// Linux system.
// library has system() library function.
#include
int main()
{
system("sudo shutdown now");
}
输出 :
An alert box appears telling you that your System will Shut Down.
在您的系统上运行这些代码,并玩得开心。 🙂
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。