reading string in c from file code example
Example 1: read files in c
#include<stdio.h>
int main(){
FILE *in=fopen("name_of_file.txt","r");
char c;
while((c=fgetc(in))!=EOF)
putchar(c);
fclose(in);
return 0;
}
Example 2: c read a whole string from a file
#define _GNU_SOURCE //Necessary for getline to work with clang in Ubuntu
getline(&line, &len, fp);