fprintf.c
上传用户:bjtelijie
上传日期:2010-01-01
资源大小:87k
文件大小:1k
源码类别:

数学计算

开发平台:

Visual C++

  1. # include <stdio.h>
  2. # include <io.h>
  3. # include <stdlib.h>
  4. void main()
  5. {
  6. FILE *fp;
  7. char str[80];
  8. int i;
  9. if((fp=fopen("test", "w"))==NULL)
  10. {
  11. printf("不能打开文件.n");
  12. exit(0);
  13. }
  14. printf("Please enter a string and a number: n");
  15. fscanf(stdin, "%s %d", str, &i);  /* 参数stdin表示从键盘读入 */
  16. fprintf(fp, "%s %d", str, i);
  17. fclose(fp);
  18. if((fp=fopen("test", "r"))==NULL)
  19. {
  20. printf("不能打开文件.n");
  21. exit(0);
  22. }
  23. fscanf(fp, "%s %d", str, &i);
  24. fprintf(stdout, "%s %dn", str, i);  /* 参数stdout表示写向屏幕 */
  25. fclose(fp);
  26. }