#include #include #include int test(){ int i; for(i = 0; i < 10; i++){ char *title = "test "; fputs(title, stderr); } fputs("\n", stderr); return 0; } int main(){ test(); }