Raw File
#include <stdio.h>

int main()
{
  fputs("error\n", stderr);
  puts("hello world\n");
  return 0;
}
back to top