2011-03-09 125 views

回答

5

你只需要一個C字符串傳入fopen()。只需聲明字符串char *(我建議使用const char *)變量,將其設置並傳入該函數。

const char *filename = "my/path/to/the/file"; 
FILE *file = fopen(filename, "r"); 
+0

這裏我假設你的意思是讓一個變量包含文件名。 – 2011-03-09 05:32:21