Next: , Previous: , Up: C library functions   [Index]


fopen

fopen Function


#include <stdio.h>

FILE *f

String new path;
String new mode;

path = "/home/user/.profile";
mode = "r";

f = fopen (path, mode);