变参函数

#define  buf_len  256
char buf[buf_len];
int  varf(char * fmt,...)
{
    va_list ap ;
    va_start(ap,fmt);
    memset(buf,0,buf_len);
    vsprintf(buf,fmt,ap);
    va_end(ap);
}


你可能感兴趣的:(变参函数)