1. 首先安装下 gcc : centos yum-y gcc 2. 编写c程序保存hello.c: #include <stdio.h>#include<stdlib.h>intmain(intargc,charargv) { printf("Hello World!\n");return0; } 3. 编译程序 gcc -o hello hello.c 或者 gcc hello.c-o hello 4. 运行 hello hello Hello World...
你可以调用 系统 system函数,在程序里执行shell,如果想永久生效网路配置,示例如下 system("echo DEVICE=eth0 > /etc/sysconfig/network-scripts/ifcfg-eth0");system("echo ONBOOT=yes >> /etc/sysconfig/network-scripts/ifcfg-eth0");system("echo BOOTPROTO=static >> /etc/sysconfig/network-...
按下任意键跳出死循环