Hi I am trying to find the the 40th byte from a binary file using scheme commands.
(define FileName "D:/work_dsi/Stories/WriterOptions/Tests/block_english.model")
(define fPtr (open-input-file FileName))
(define sRec "1")
(((sRec (read-byte fPtr)))
do
((eof-object? sRec ))
(print sRec)
(define sRec (read-byte fPtr))
)
(close-input-port fPtr)
i tried with this expression for a better understanding of the concept , but couldn't achieve anything.