c语言 实现ping 功能/效果 检测当前网络是否连通
#include<stdio.h>#include <unistd.h>int go_ping(char *svrip){ int i = 0; while(i < 3) { pid_t pid; if ((pid = vfork()) < 0...