首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴chengjun0619的代码贴全部
#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
1
chengjun0619