有如下代码:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define ARGLEN 20
int main()
{
printf("shot me a string: ");
char str[ARGLEN];
fgets(str, ARGLEN, stdin);
printf("strlen(str) = %d\n", strlen(str));
str[strlen(str) - 1] = '\0';
char *cp = malloc(strlen(str) + 1);
if (cp == NULL) {
fprintf(stderr, "no memory\n");
exit(1);
}
strcpy(cp, str);
printf("the final string is: %s\n", cp);
}
运行结果:
全选复制放进笔记$ gcc test.c && ./a.out
shot me a string: helloworld
strlen(str) = 11
the final string is: helloworld
$ gcc test.c && ./a.out
shot me a string: helloworldhelloworld
strlen(str) = 19
the final string is: helloworldhellowor
输入helloworld返回结果正常, 在内存里str的内容应该是 [h, e, l, l, o, w, o, r, l, d, \n, \0] 所以 strlen(str) = 11, 那么当输入为两个helloworld的时候结果又是什么样的呢?
gdb 调试信息:
Breakpoint 1, main () at test.c:13
13 str[strlen(str) - 1] = '\0';
(gdb) p str
$1 = "helloworldhelloworl"
(gdb) p strlen(str)
$2 = 19
说明系统自动把str的最后一个字符替换成了'0'了?
fgets(str, ARGLEN, stdin);
只从stdin里读ARGLEN-1个字符,然后第ARGLEN个位置置为0。。。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。