作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在做:
FILE *in;
extern FILE *popen();
char buff[512];
if (!(in = popen("df / | tail -n +2 | awk '{ print $1 }'", "r"))) {
exit(1);
}
while (fgets(buff, sizeof(buff), in) != NULL ) {
printf("Output: %s", buff);
}
因此,一旦我有了 buff
,如何在末尾附加额外的字符,例如 s0
,以便我可以将此 char
传递给可以使用它的函数吗?
最佳答案
像这样的东西可以解决问题:
char buff[512];
size_t pos = 0;
...
while (fgets(buff + pos, sizeof(buff) - pos, in) != NULL) {
printf("Output: %s\n", buff + pos);
pos += strlen(buff + pos);
}
如果您想添加不是来自文件的字符,您可以扩展这个想法:
strcpy(buff + pos, "s0");
pos += strlen(buff + pos);
或
buf[pos++] = 's';
buf[pos++] = '0';
buf[pos++] = '\0';
您必须确保缓冲区不会溢出。
关于c - 如何向字符添加字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15687226/
我是一名优秀的程序员,十分优秀!