c++ - C 语言 gets() 和 printf() 的问题
大家讲道理
大家讲道理 2017-04-17 13:25:28
0
1
550

当我输入一串字符

    char str[10];
    printf("Input a string.\n");
    gets(str);
    printf("The string you input is: %s",str);

当我输入的字符串长度大于0 的时候,输出结果是这样的

1ang:lab lang$ ./exercise 
Input a string.
warning: this program uses gets(), which is unsafe.
0123456789
Abort trap: 6

但是我加了 \n, printf("The string you input is: %s\n",str); 输出的结果就不一样了

1ang:lab lang$ ./exercise 
Input a string.
warning: this program uses gets(), which is unsafe.
0123456789
The string you input is: 0123456789
Abort trap: 6

它会先printf然后再报错, 这是为什么?(编译器是GCC)

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(1)
小葫芦

Strings in C use the null character

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template