📜  将字符数组写入文件 - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:39.740000             🧑  作者: Mango

代码示例1
// Char arrays are declared like so:
char array[] = "YOUR TEXT HERE";

// Open a file for writing. 
// (This will replace any existing file. Use "w+" for appending)
FILE *file = fopen("filename", "w");

int results = fputs(array, file);
if (results == EOF) {
    // Failed to write do error code here.
}
fclose(file);