puts

Name

puts -- outputs characters from a buffer

Synopsis

#include <stdio.h>

void puts(char *str);

Description

This function accepts a null-terminated string anywhere in processor address space (RAM or ROM), and outputs it to the standard output.

It relies upon the library function putch(), which must be available elsewhere. For more information, see Reference IV, STDIO.

Examples

An example of using puts()