C00B0103

Explanation

The program called freopen() with an empty filename string. The mode argument specified type=memory. The name of the file being reopened begins with '*', which is not possible for a memory file. You cannot specify type=memory when reopening a file that is not a memory file.

Programmer response

Correct the mode argument.

Symbolic Feedback Code

JrEdc1opsEbadmode03