wdleng(3C)
_________________________________________________________________
wdleng function
Return the word length in bits of the type int.
_________________________________________________________________
Calling Sequence
int m, wdleng();
m = wdleng();
where m is of type int.
Description
Use the wdleng function to find the word length, in bits, of the
type int. For this implementation, the return value is always
the integer value 32.
Returns
The wdleng function returns the word length of the type int.
Related Functions
See also the sizeof keyword, described in Chapter 8 of the C
Language Reference.
Example
/* Program test for the wdleng() function */
int m;
main() {
printf("The wdleng function returns %d.\n",
m = wdleng());
}
A call to the program test generates the output
The wdleng function returns 32.
DG/UX 4.00 Page 1
Licensed material--property of copyright holder(s)