|
Writes text or byte data to an open file. |
Writes text or byte data to an open file.
|
None
Return value has no meaning.
Throws String
Error: "write_error": followed by the actual erroruse "file"; int fid = open(filename); //fileOpen fileWrite(fid, "First line is here "); //full name of the routine write(fid, "Second line is here "); close(fid); //fileClose |