InterviewSolution
Saved Bookmarks
| 1. |
How many characters for pushback is guaranteed per file while using ungetc(c, fp);?(a) Only 1 character(b) Characters within 1 word(c) Characters within 1st new-line(d) All characters upto NULL characterThis question was posed to me during an internship interview.This question is from Ungetc in portion Input and Output in C of C |
|
Answer» CORRECT ANSWER is (a) Only 1 character The EXPLANATION: NONE. |
|