I want to ask is that there is a function to read text file from bottom up in C ?
Exp: text content is abcdef
--> we will get fedcba
.
If there is no such function like that,I'm thinking about pass text content into an array,then reverse the array,is that ok ? Do you have better solution for this question :)