9 lines
104 B
C
9 lines
104 B
C
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
fputs("error\n", stderr);
|
|
puts("hello world\n");
|
|
return 0;
|
|
}
|