ricu
0
Q:

fgets function in c

<open file>
while(fgets(<char array>, <size of array>, <file pointer>) != null)
4
// C program to illustrate 
// fgets() 
#include <stdio.h> 
#define MAX 15 
int main() 
{ 
    char buf[MAX]; 
    fgets(buf, MAX, stdin); 
    printf("string is: %s\n", buf); 
  
    return 0; 
} 
1
char str[20]; //declare string of 20
fgets(str, 20, stdin); // read from stdin
puts(str); // print read content out to stdout
  
0

New to Communities?

Join the community