1

次のコードがあります。

#define NUM_STUDENTS 20
#define TIME_STUDENTS 10

typedef struct
{
    int name;
    int age;
} Student;

typedef struct
{
    int number;
    int post;
} Contact;

typedef struct
{
      int             number;
      Student         students[TIME_STUDENTS][NUM_STUDENTS];
      Contact         contact[NUM_STUDENTS];
} Master;

typedef struct
{
      int             number;
      Student         students[NUM_STUDENTS][NUM_STUDENTS];
      Contact         contact[NUM_STUDENTS];
} Info;

Info info;
Master master;

//fill the data for master

if(NUM_STUDENTS < 10)
{
   memcpy(&info.student[0][0],
         &master.student[0][0],
         sizeof(Student) * NUM_STUDENTS * NUM_STUDENTS);
}

NUM_STUDENTS は から に変更でき1ます20。しかし、次の警告が表示されました。

Warning 420: Apparent access beyond array for function 'memcpy(void *, const void *, unsigned int)', argument 3 exceeds argument 2

問題は何ですか?それを修正する方法は?

4

1 に答える 1

6

ではMaster、あなただけが持っています

Student         students[TIME_STUDENTS][NUM_STUDENTS];

そしてTIME_STUDENTSより小さいのでNUM_STUDENTS

 memcpy(&info.student[0][0],
       &master.student[0][0],
       sizeof(Student) * NUM_STUDENTS * NUM_STUDENTS);

ソースよりも多くのバイトをコピーします。

于 2013-06-14T16:03:55.773 に答える