1#include <stdio.h> 2 3int main() 4{ 5 fprintf(stderr, "This is stderr\n"); 6 printf("This is stdout\n"); 7 return 0; 8} 9