InterviewSolution
Saved Bookmarks
| 1. |
What is the size of array “line” used in fgets(line, maxline, *fp) function?(a) maxline – 1(b) maxline(c) maxline + 1(d) Size is dynamicThis question was posed to me by my college professor while I was bunking the class.My query is from Line Input & Output in portion Input and Output in C of C |
|
Answer» RIGHT CHOICE is (B) maxline The EXPLANATION: NONE. |
|