C语言的字符串输出puts()函数
程序员文章站
2022-09-28 16:37:37
c语言的字符串输出puts函数">C语言的字符串输出puts()函数
puts()函数很容易用,只需把字符串地址作作为参数传递给它就可以了。
put...
c语言的字符串输出puts函数">C语言的字符串输出puts()函数
puts()函数很容易用,只需把字符串地址作作为参数传递给它就可以了。
puts()函数有两个特点:
puts()在显示字符串时会自动在其末尾添加一个换行符。 puts()遇到空字符时就停止输出,所以必须确保有空字符。下面两个示例分别说明puts()的两个特点。
示例1:
/* put_out.c -- using puts() */ #include #define DEF "I am a #defined string." int main(void) { char str1[80] = "An array was initialized to me."; const char * str2 = "A pointer was initialized to me."; puts("I'm an argument to puts()."); puts(DEF); puts(str1); puts(str2); puts(&str1[5]); puts(str2+4); return 0; }
该程序的输出如下:
I'm an argument to puts(). I am a #defined string. An array was initialized to me. A pointer was initialized to me. ray was initialized to me. inter was initialized to me.
如上所示,每个字符串独占一行,因为puts()在显示字符串时会自动在其末尾添加一个换行符。
示例2:
/* nono.c -- no! */ #include int main(void) { char side_a[] = "Side A"; char dont[] = {'W', 'O', 'W', '!' }; char side_b[] = "Side B"; puts(dont); /* dont is not a string */ return 0; }
下面是该程序的一个示例,可能每次运行结果都不一样,不同的编译器输出的内容有可能不同:
WOW!Side A
puts()如何知道在何处停止?该函数遇到空字符时就停止输出。由于dont缺少一个表示结束的空字符,所以它不是一个字符串,因此puts()不知道何处停止。它会一直打印dont后面内存中的内容,直到发现一个空字符为止。为了让puts()能尽快读到空字符,我们把dont放在side_a和side_b之间,上面是该程序的一个运行示例,不同的编译器输出的内容有可能不同
通常内存中有许多空字符,如果幸运的话,puts()很快就会发现一个。但是这样做是不靠谱的!
下一篇: C语言将BMP格式图片转化为灰度