Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Includes the C Standard library header <stdarg.h> and adds the associated names to the std namespace. Including this header ensures that the names declared using external linkage in the C Standard library header are declared in the std namespace.
Syntax
#include <cstdarg>
Namespace and Macros
namespace std {
using va_list = see below;
}
#define va_arg(V, P)
#define va_copy(VDST, VSRC)
#define va_end(V)
#define va_start(V, P)
See also
Header Files Reference
C++ Standard Library Overview
Thread Safety in the C++ Standard Library