Hello again, I'm still wrapping my head around these character arrays but I have a question about these two file functions.
FileSeek() - this takes two arguments, the file handle and seek. The file handle is the same handle that is used for FileOpen but how is "seek" defined? Is seek defined as an index within the file? If I had a dictionary program with the words saved in a .txt file, how do I use "seek" to find a word (I use \n ) ?
FileRead() - this one takes three arguments. The handle makes sense but I have questions about the character array and length. When FileRead() is called, it starts at the index (seek? - see above) and will continue to read character by character as defined by len? After the data has been copied, it is transferred to a character array as defined as the second argument of the function?
Can anyone who knows about these functions share some light on how they actually work :/