I need to read a binary file to get some values. I have seen that CStdio supports binary by setting a flag for opening a file for input in binary. I can later use the Read function that would read the specified bytes and write them to a char array. Can these bytes be written into another data type like an int or double? If yes, how? If no, how do I convert the char array to another data type, through normal casting or through what means? Please help. Any procedure for doing this will be greatly appreciated. Thanks in advance.