puts - Writes the string to the standard output device in C

  #include <stdio.h>
  #include <string.h>

  int main(void)
  {
    char str[80];

    strcpy(str, "this is an example");

    puts(str);

    return 0;
  }