C语言可变参数个数的函数(待补充)

void func(int cnt,...)
{
  va_list arg;
  va_start(arg, cnt);
  arg_cnt = cnt;
  for(i=0;i

你可能感兴趣的:(C语言可变参数个数的函数(待补充))