Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图找出如何从 main() 调用给定函数。
void initialize(struct word_pair word_table[], int size)
例如initialize ( what, 5);
initialize ( what, 5);
我是 C 的新手,我认为这把我脑子里的一切都搞砸了。
这是一个示例用法:
#define SIZE 10 struct word_pair word_tables[SIZE]; // Populate the elements of word_tables initialize(word_tables, SIZE);
该initialize()函数有 2 个参数:
initialize()
struct word_pair
在上面的示例中,变量word_tables是一个 size 数组SIZE。
word_tables
SIZE
SIZE是在上面的示例中macro定义10的,但您可以根据需要更改它。
macro
10