#include <stdio.h> int main() { FILE *fp = stdout; int num; fprintf(fp, "%d\n ", 200); fprintf(stderr, "%d", 300); return 0; }
200 300
Previous Question Next Question
Your comments will be displayed only after manual approval.