0

我试图找出如何从 main() 调用给定函数。

void initialize(struct word_pair word_table[], int size)

例如initialize ( what, 5);

我是 C 的新手,我认为这把我脑子里的一切都搞砸了。

4

1 回答 1

2

这是一个示例用法:

#define SIZE 10
struct word_pair word_tables[SIZE];

// Populate the elements of word_tables

initialize(word_tables, SIZE);

initialize()函数有 2 个参数:

  • 一个数组struct word_pair
  • 数组的大小。

在上面的示例中,变量word_tables是一个 size 数组SIZE

SIZE是在上面的示例中macro定义10的,但您可以根据需要更改它。

于 2013-03-04T01:36:18.390 回答