Specifiers

Specifiers

The list of allowable variable specified corresponds more or less exactly to that found in C, with some small omissions and minor inclusions. For a full list see the reference page at cplusplus.com or cppreference.com. The list of printf features that are not (currently) supported in Aten are as follows:

  • The pointer specifier '%p' is not supported. To print out reference addresses, use '%li'.

  • The single-character specifier '%c' is not supported.

  • Output of long doubles by prefixing a specifier with 'L' (e.g. '%Le') is not supported.