我正在尝试创建一个表,并且表的条目属于结构类型。我收到错误“从类型'TableRow'分配给类型'SortTableRows'时不兼容的类型”。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct TableRow
{
int startingValue;
int entries[100];
}TableRow;
typedef TableRow SortTableRows[20]; //Table Containing entries of type TableRow
SortTableRows* SortTableRowsPtr;
int main()
{
TableRow *tableRow;
tableRow = malloc(sizeof(TableRow));
tableRow = NULL;
SortTableRowsPtr[2]=*tableRow; //Error
return 0;
}