Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 In a file contains the line "I am a boy\r\n" then on reading this line into the array str using fgets(). What will str contain? ?->(Show Answer!)
1. In a file contains the line "I am a boy\r\n" then on reading this line into the array str using fgets(). What will str contain?
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.02 pm
Declaration: char *fgets(char *s, int n, FILE *stream); fgets reads characters from stream into the string s. It stops when it reads either n - 1 characters or a newline character, whichever comes first. Therefore, the string str contain "I am a boy\n\0"