Skip to content

C Programming, Review Questions

Anon edited this page Dec 29, 2016 · 8 revisions

1. What does the following print out

int main(){
    fprintf(stderr, "Hello ");
    fprintf(stdout, "It's a small ");
    fprintf(stderr, "World\n");
    fprintf(stdout, "place\n");
    return 0;
}

Clone this wiki locally