有谁知道使用 GTK 处理文件。我需要以“w+”模式打开一个文件并写入它。我不知道 GTK 中是否存在文件处理。下面是我需要的 GTK 格式的示例“C”程序。
#include <stdio.h>
int main(int argc, char *argv[]) {
int a = 5;
float b = 3.14;
FILE *fp;
fp = fopen( "test.txt", "w+" );
fprintf( fp, " %d %f", a, b );
fwrite(----);
fclose( fp );
}