You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fprintf(stdout, "Welcome, to the jungle - by fprintf() to stdout\n"); //fprintf(stdout,...) - file print formatted to STDOUT is identical to printf()
fprintf(stderr, "Welcome, to the jungle - by fprintf() to stderr\n"); //fprintf(stderr,...) - file print formatted to STDERR is identical to printf(), except that is directed to STDERR
// ... is just another output and redirection channel ( e.g. when redirecting programs output to a file with the '>' operator)