我正在我的 c 程序中运行一个进程。我需要在它开始运行之前将用户的参数提供给这个进程。我该怎么做?
这是我的代码:
#include<stdio.h>
#include<stdlib.h>
main()
{
char inp[10];
printf("\nInput the interface\n");
scanf("%s",inp);
system("ifconfig [interface from user(inp)]"); //interface from user
}
我需要第 8 行才能像
system("ifconfig eth0"); //if user want eth0 interface