C语言2变量在一个system里如何实现?进来看下
#include <stdlib.h>#include <stdio.h>
void main()
{
char a;
int c,b;
b="999" ;
c="shutdown -s -t ";
system(('c)b'); /主要在这里 不知道怎么填写 我想 “system("shutdown -s -t 999")”
/但是想给2个定义值在里面随便更改的 可是 不知道怎么输出 求方法。
printf("系统将在30秒后自动关机!\n");
loop:
a=getchar();
if(a=='n')
system("shutdown -a");
else
{
printf("sorry,password mistake!\n");
goto loop;
}
}