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