I am new to Linux and to C++. I am using g++ compiler. I am programming a game that uses nested structures to create a character with string and integers. They represent the character's name, his location, and his attributes. I am using count=fwrite(&Kenji,sizeof(struct CHAR),1,fp); to write the file, where Kenji is the instance of struct CHAR and fp=fopen(Kenji, "w+b"); Inside ...