typeof, __typeof, __typeof__
Go Up to Keywords, Alphabetical Listing Index
Note: This feature is available only for the classic bcc32 compiler, not for the modern Clang-enhanced compiler. Use __declspec(thread) instead.
Syntax
__typeof(EXPR)
typeof, __typeof, and __typeof__ return the type of EXPR. The result is the same as using decltype(EXPR).
Note:
typeof, __typeof, and __typeof__ are available only with the -Nt option set.