填空

作者在 2013-03-28 22:25:43 发布以下内容
#include  <stdio.h>
#include  <stdlib.h>
void fun(char  *s, int  a, double  f)
{
/**********found**********/
   __1__ fp;
  char  str[100], str1[100], str2[100];
  int  a1;     double  f1;
  fp = fopen("file1.txt", "w");
  fprintf(fp, "%s  %d  %f\n", s, a, f);
/**********found**********/
  __2__ ;
  fp = fopen("file1.txt", "r");
/**********found**********/
  fscanf(__3__,"%s%s%s", str, str1, str2);
  fclose(fp);
  a1 = atoi(str1);
  f1 = atof(str2);
  printf("\nThe result :\n\n%s %d %f\n", str, a1, f1);
}
main()
{ char  a[10]="Hello!";    int  b=12345;
  double  c= 98.76;
  fun(a,b,c);
}
默认分类 | 阅读 513 次
文章评论,共0条
游客请输入验证码
文章分类
文章归档
最新评论