0

我正在编写一个程序,它接受一个包含数据库条目的文件。这些条目都采用相同的格式,数据的顺序相同。文件中的第一个数字是条目数。然后数据如下所示: LastName FirstName StudentID age year GPA expectedGraduationDate

例如:Doe John 12345678 23 大一 4.0 2013

我的问题是年份值。我们应该将它声明为“类”类型,它应该是enum class{freshman, sophomore, junior, senior, grad};

我有一个带有以下声明的头文件:

typedef enum {firstYear, sophomore, junior, senior, grad} class;

然后我的主文件:

#include <stdio.h>
#include <stdlib.h>
#include "class.h"

int main(int argc, char *argv[]){

typedef struct{
        int DBrecordID;         //ID for each entry, range 0-319
        char *last;             //student last name
        char *first;            //student first name
        char studentID[8];      //student ID
        int age;                //student age
        class year;             //year in school
        float gpa;              //GPA
        int expGradYear;        //expected graduation year
}DBrecord;
int numEntries;
DBrecord **record;
char buffer[80];
FILE *fpt;
int c, i;
int j = 0;

//check for invalid file arguments
if(argc != 2){
        printf("Number of arguments is invalid\n");
        exit(1);
}

//error if unable to open file
if((fpt = fopen(argv[1], "r")) == NULL){
        printf("Error: Couldn't open file.\n");
        exit(1);
}

//set file pointer to read passed file
fpt = fopen(argv[1], "r");

//scan first int in file and assign to numEntries
//fscanf(fpt, "%d", &numEntries);

//allocate memory for structures, each is 36 bytes
*record = malloc (sizeof (DBrecord) * numEntries);

//loop through each DB entry
do{
        for(i=0; i<numEntries; i++){
                numEntries = record[i]->DBrecordID;
                do{
                        c=fgetc(fpt);
                        buffer[j++] = c;
                }while(c != ' ');
                        strcpy(record[i]->last, buffer);
                        j=0;
                do{
                        c=fgetc(fpt);
                        buffer[j++] = c;
                }while(c != ' ');
                        strcpy(record[i]->first, buffer);
                        j=0;
                do{
                        c=fgetc(fpt);   
                        buffer[j++] = c;
                }while(c != ' ');
                        strcpy(record[i]->studentID, buffer);
                        j=0;
                do{
                        c=fgetc(fpt);
                        memcpy(c, buffer[j++], 1);
               }while(c != ' ');
                        memcpy(buffer, record[i]->year, 4);
                        j=0;
                do{
                        c=fgetc(fpt);
                        buffer[j++] = c;
                }while(c != ' ');
                        memcpy(buffer, record[i]->gpa, 4);
                        j=0;
                do{  
                        c=fgetc(fpt);
                        buffer[j++] = c;
                }while(c != ' ' || c != '\n');
                        memcpy(buffer, record[i]->expGradYear, 4);
                        j=0;
         }
}while(c != EOF);

return 0;
}

*更新错误

main.c:75:警告:传递 `memcpy' 的 arg 1 使指针从整数而不进行强制转换

main.c:75:警告:传递 `memcpy' 的 arg 2 使指针从整数而不进行强制转换

main.c:77:“memcpy”的参数 2 的类型不兼容

main.c:83:“memcpy”的参数 2 的类型不兼容

main.c:89:警告:传递 `memcpy' 的 arg 2 使指针从整数而不进行强制转换

main.c:94:在“DBrecord”之前解析错误

所以我假设我不能用 memcpy 做我想做的事情,或者我做错了。建议?

4

2 回答 2

1

程序中有很多错误,但首先

1)record应该是DBrecord*not类型DBrecord**

2)strcpy将目的地作为第一个参数,所以这不起作用 strcpy(buffer, record[i]->last);

3)您还需要为record[i]->last

4) strcpy用于复制字符串,因此如果您不想存储到浮点数或 int 即 gpa 等,您还需要使用memcpy缓冲区中的值应该使用转换strol strod

也建议拿到这本书K&R加班真的很有帮助

于 2012-04-18T04:40:55.203 回答
0

你为什么要尝试strcpy字符串复制)从int, like expGradYear

strcpy用于字符串。如果要将 int 附加到缓冲区,请使用memcpyMEMory Copy)

于 2012-04-18T04:31:55.650 回答