Vidyalelo
C Programming · Q110

File Input Output

Programming · C Programming · question 110

Q110

What will be the output of the following C statement? int sscanf(char *string, char *format, arg1, arg2, ...)

A.
Scans the string according to the format in format and stores the resulting values through arg1, arg2, etc
B.
The arguments arg1,arg2 etc must be pointers
C.
Scans the string according to the format in format and stores the resulting values through arg1, arg2, etc, those arguments arg1,arg2 etc must be pointers
Answer
D.
None of the mentioned

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board