刘华世的官方博客

C语言 将小写字母写入文件

#include <stdio.h>
#include <stdlib.h>

main()
{
    FILE *fp;
    char c;
    fp=fopen("lhsbqb.txt","w");
    if(fp==NULL){printf("file open faild!");exit(0);}
    for(c='a';c<='z';c++)
    {
         fputc(c,fp);
    }
    fclose(fp);
    printf("字每添加完成");
    getchar();
}

http://www.pythonschool.com/python/12.html 转摘 

posted @ 2012-10-18 12:51  pythonschool  阅读(240)  评论(0编辑  收藏  举报
刘华世的官方博客