作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编写一个带有两个命令行参数的程序。第一个是字符串;第二个是文件名。然后程序应该搜索文件,打印包含该字符串的所有行。因为该任务是面向行的而不是面向字符的,所以使用 fgets() 而不是 getc()。使用标准 C 库函数 strstr() 在每一行中搜索字符串。假设没有更长的线超过 255 个字符。
最佳答案
/* with thanks to @AduaitPokhriyal */
#include <stdio.h>
int main(int argc, char *argv[])
{
char command[100]; /* i hope this is large enough! */
sprintf(command, "grep %s %s", argv[1], argv[2]); /* i hope the arguments are there and valid! */
system(command); /* surely "grep" must use strstr() somewhere */
return 0;
}
关于你能帮我这个(C 语言)吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22533723/
嗨,我是第一次玩 Pig,我很好奇如何处理将一个字段拆分成多个其他字段。 我有一个包,A,如下图: grunt> Dump A; (text, text, Mon Mar 07 12:00:00 CD
如何添加架构中未定义的固定字段(例如日期或月份)?我运行了以下 pig 脚本以将固定日期添加到我的结果表中,并收到以下错误消息:Invalid field projection。方案中不存在投影字段
我是一名优秀的程序员,十分优秀!