#include int main(int argc, char* argv[]){ printf("hello, %s! (using printf)\n", "world"); fprintf(stdout, "HELLO, %s! (using fprintf sending to stdout)\n", "WORLD"); fprintf(stderr, "Hello, %s! (using fprintf sending to stderr)\n", "World"); }