RosettaCodeData/Task/Hello-world-Standard-error/C/hello-world-standard-error.c

10 lines
106 B
C
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#include <stdio.h>
int main()
{
fprintf(stderr, "Goodbye, ");
fputs("World!\n", stderr);
return 0;
}