InterviewSolution
Saved Bookmarks
| 1. |
Which of the following represents the function for scanf()?(a) void scanf(char *format, …)(b) int scanf(char *format, …)(c) char scanf(int format, …)(d) char *scanf(char *format, …)This question was posed to me by my college director while I was bunking the class.Question is from Formatted Input in division Input and Output in C of C |
|
Answer» CORRECT answer is (b) int scanf(char *FORMAT, …) The BEST I can explain: None. |
|