Node:Simple Output, Next:, Previous:Opening and Closing Files, Up:C-Style I/O Functions



Simple Output

fputs (fid, string) Built-in Function
Write a string to a file with no formatting.

Return a non-negative number on success and EOF on error.

puts (string) Built-in Function
Write a string to the standard output with no formatting.

Return a non-negative number on success and EOF on error.