だから私はこのコードを持っています
char processName[50] = {0}; // init all to 0
printf("Enter the process to kill: ");
scanf("%s", processName); // read and format into the str buffer
printf("Attempting to kill %s\n", processName); // print buffer
system("killall %s", processName);
これを入れると、「関数「システム」への引数が多すぎます」というエラーが発生します