C语言 <stdio.h> puts() 函数

  • 描述

    C库函数int puts(const char *str)将一个字符串写入stdout,但不包括空字符。换行符附加到输出。
  • 声明

    以下是puts()函数的声明。
    
    int puts(const char *str)
    
    参数
    • str-这是要写入的C字符串。
  • 返回值

    如果成功,则返回非负值。出错时,该函数返回EOF。
    示例
    以下示例显示puts()函数的用法-
    
    #include <stdio.h>
    #include <string.h>
    
    int main () {
       char str1[15];
       char str2[15];
    
       strcpy(str1, "jc2182");
       strcpy(str2, "compileonline");
    
       puts(str1);
       puts(str2);
       
       return(0);
    }
    
    尝试一下
    让我们编译并运行上面的程序,它将产生以下结果-
    
    jc2182
    compileonline