Popular repositories Loading
-
my_fgets
my_fgets Public#include<stdio.h> void my_fgets(char s[],int n,FILE *fp){ int i =0; for(;i<n+1;i++){ s[i]=fgetc(fp); if(s[i]==EOF || s[i]=='\n' || s[i]=='\0')break; } } void your_fgets(char s[],int n,FILE *fp){ in…
-
-
-
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.