Content deleted Content added
mNo edit summary |
mNo edit summary |
||
Line 35:
Writing and appending modes will create a file to write to in the case that the file name doesn't already exist. However, the operation of fopen is undefined if the filename doesn't follow requirements by the OS. For example, if the filename contains illegal characters , the program might crash. For example, in windows \ /: * ? < > and | cannot be part of a file name.
A convenient, but
<pre>
#include <stdio.h>
|