给定以下代码片段:
#include <stdio.h>
#include <stdlib.h>
#define MAX_SIZE 15
typedef struct{
int touchdowns;
int interceptions;
int tackles[MAX_SIZE + 1]; //this is the line in question
}stats;
向我提出的问题是,“为什么这条线 [如上所述] 将可能的铲球数加 1?”
----不是为什么一个人也想要,而是它如何/为什么起作用。为什么它是有效的代码,换句话说,不一定是有效的逻辑。-澄清
我不确定如何详细回答这个问题。任何帮助,将不胜感激。