Line 20: This line is unnecessary. The file is implicitly opened because a filename was specified on line 19.
Line 24: If the file failed to open, you display a message, but then continue as if nothing was wrong. Not a good idea. You should call exit() or return 1.
Line 34: An if statement will only detect a single mistake. What if the user enters an invalid R multiple times? You won't detect it. This should be a while statement.
Line 52: You're writing cred.gender, but cred.gender was never initialized.
Line 52: You're writing randChar() for the number of credits.
Line 64: You are repeatedly adding the contents of cred.credits. credit was a temporary variable used in line 45-52. At this point it contains only the data for the last entry made.