#include <stdio.h>
/*******************
*name:fopen.c
*author:QG
*time :2015-05-12
*description:try to open a file for reading and writing,the file will be created if it does not exist.
*******************/
int main()
{
FILE *fd;
char *file_name = "./123.txt";
fd = fopen(file_name,"w+");
printf("FILE is %d!\n",fd);
}
库函数调用 1--fopen
最新推荐文章于 2023-01-13 13:50:36 发布