1、puts函数是gets函数的输出版本,它把指定的字符串写到标准输出并在末尾添加一个换行符
#include <stdio.h>
#include <stdlib.h> int main(int argc, char *argv[]) {
char msg[];
gets(msg);
puts(msg); system("pause");
return ;
}
/*
hi, puts.
hi, puts.
请按任意键继续. . .
*/
2024-03-20 21:00:22
1、puts函数是gets函数的输出版本,它把指定的字符串写到标准输出并在末尾添加一个换行符
#include <stdio.h>
#include <stdlib.h> int main(int argc, char *argv[]) {
char msg[];
gets(msg);
puts(msg); system("pause");
return ;
}
/*
hi, puts.
hi, puts.
请按任意键继续. . .
*/