#include <stdio.h>
struct stu
{
char name[10];
int num;
int age;
char addr[15];
}boya[3],boyb[3],*pp,*qq;
main()
{
FILE *fp;
......................
阅读全部 | 2012年6月10日 22:06
#include <stdio.h>
#include <string.h>
main()
{
FILE *fp;
char s[80],ch,key;
key=31;
if((fp=fopen("c:\\0.txt","r+"))==NULL)
{
printf("Cannot open file 0.txt");
getch();
exit(0);
......................
阅读全部 | 2012年6月10日 22:03