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