我需要调用一系列需要输入数组中的列表的函数,如下所示:
1st call to func:
custom_type_t inarray = {1,2,3,4,5,6,7,8,9,10};
2nd call to func:
custom_type_t inarray = {11,12,13,14,15,16,17,18,19,20};
...
如何将其打包到一个可以使用特定参数调用的函数中,该函数将提取数字并相应地填充数组?我应该相应地使用预编译器吗?感谢您的任何想法!
我需要调用一系列需要输入数组中的列表的函数,如下所示:
1st call to func:
custom_type_t inarray = {1,2,3,4,5,6,7,8,9,10};
2nd call to func:
custom_type_t inarray = {11,12,13,14,15,16,17,18,19,20};
...
如何将其打包到一个可以使用特定参数调用的函数中,该函数将提取数字并相应地填充数组?我应该相应地使用预编译器吗?感谢您的任何想法!