18 lines
277 B
C
18 lines
277 B
C
|
// 读写文本文件
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
char *f = (char *)malloc(100);
|
||
|
FILE *fp = fopen("d5.txt", "w");
|
||
|
if (fp == NULL)
|
||
|
{
|
||
|
perror("fopen");
|
||
|
exit(1);
|
||
|
}
|
||
|
fputs("disen", fp);
|
||
|
fclose(fp);
|
||
|
|
||
|
return 0;
|
||
|
}
|