Przykład użycia :

/*

http://pubs.opengroup.org/onlinepubs/009695399/basedefs/inttypes.h.html
gcc i.c -std=c99 -Wall

*/

#include <inttypes.h>
#include <wchar.h>
int main(void)
{
    uintmax_t i = UINTMAX_MAX; // This type always exists.
    wprintf(L"The largest integer value is %020"
        PRIuMAX "\n", i);
    return 0;
}