John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: Links: C Reading and writing (stdin, stdout)


C Reading and writing to files

1
2
3
//Setting a file path
FILE *fptr;
fptr = fopen("./{filename}","{mode}");

fgets reads the file until it either reaches the character limit (specified by the second argument) or reaches a newline character ('\n'). If you don’t put newlines when your adding songs to the file it won’t know where the lines end.


Backlinks


References:

Created:: 2021-10-05 16:37


Interactive Graph