void puts(char *str) { while (*str) { putchar(*str++); } } int main() { puts("hello, world!\n"); }