void va_test2(va_list ap2) { printf("va_test 2 : %d\\n", va_arg(ap2, int)); } void va_test1(const char* str, ...) { va_list ap1; printf(&