2013年5月25日 星期六

[C/C++基礎]- 純C一次讀取一行資料

[C/C++基礎]- C一次讀取一行資料



本篇要分享-C一次讀取一行資料程式,有興趣的(C/P)同好,歡迎來(C/P)一下哈哈 ^ ^









#include <stdio.h>

#include <stdlib.h>

#include <string.h>

int main()

{

    printf("Hello world!\n");

    FILE *pf;

    int i=0;

    char buf[513];

    char buf0[100];

    pf=fopen("123.xml","r");

    while(fgets(buf,512,pf) != NULL)

    {

        printf("%d\t%s\n",i,buf);

    }

    fclose(pf);

    return 0;

}


 


1 則留言:

  1. char buf0[100];
    沒用到 不必加上去吧 !!!
    那 int i
    好像都是 0 沒啥用耶 !!!

    回覆刪除