/*
 * Copyright(C) Paul und Scherer (mct.de/mct.net)
 *
 * This example demonstrates how to...
 *
 *  ... use stdin/stdout.
 */

#include <stdio.h>

/*
 * The program keeps sending strings to stdout. After each
 * string it waits for a character from stdin to continue.
 */
int
main(void)
{
	while (1) puts("hello..."), getchar();
}
