gpt4 book ai didi

c - 我应该如何将变量传递给 system() C 调用?

转载 作者:太空宇宙 更新时间:2023-11-04 08:11:19 26 4
gpt4 key购买 nike

如果要发送echo $c > 1.txt,应该如何调用System C call?我能够将 c 发送到 1.txt 但我如何发送 $c (在脚本意义上)在 C 代码中(即, c) 中的值?

我的代码是这样的:

void main() {
int c =100;
system("echo c > 1.txt");
}

我想在文件 1.txt 中保存 100

最佳答案

你应该使用 sprintf()函数构造适当的命令,然后将其传递给您的 system() 调用:

#include <stdlib.h>
#include <string.h>
#include <stdio.h>

int main() {
int c = 100;
char buffer[128];
sprintf(buffer, "echo %d > 1.txt", c);
system(buffer);
return 0;
}

关于c - 我应该如何将变量传递给 system() C 调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39171364/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com