Writes a wide character to the standard output (stdout) and returns the character.
#include <wchar.h> wint_t putwchar (wint_t wc);
x | The character written to the file. Indicates success. |
WEOF | Indicates an output error. The function sets errno. For a list of the errno values set by this function, see fputwc in this section. |
Returns the absolute value of an integer as an __int64. llabs is a synonym for qabs.
#include <stdlib.h> __int64 qabs (__int64 j); __int64 llabs (__int64 j);
Returns the quotient and the remainder after the division of its arguments. lldiv is a synonym for qdiv.
#include <stdlib.h> qdiv_t qdiv (__int64 numer, __int64 denom); lldiv_t lldiv (__int64 numer, __int64 denom);
typedef struct { __int64 quot, rem; } qdiv_t, lldiv_t;