Next: fprintf, Previous: fmod, Up: C library functions [Index]
fopen
#include <stdio.h> FILE *f String new path; String new mode; path = "/home/user/.profile"; mode = "r"; f = fopen (path, mode);