C语言中的格式化写入文件函数及使用实例

类别:编程语言 点击:0 评论:0 推荐:

#include <stdio.h>

main()
{

  FILE  *Ptr;

  char  Line[256];

  /* ... Open a file for output. */

  Ptr = fopen("/tmp/OutputFile", "w");

  while(gets(Line))  /* Get data from stdin */
  {
    fprintf(Ptr, "%s\n", Line); /* Send data to file.  */
  }

  fclose(Ptr);
}

本文地址:http://com.8s8s.com/it/it25823.htm