UIntToBinStr
char *UIntToBinStr (unsigned int unsignedIntegerValue, char *binaryString);
Purpose
Convert an unsigned integer value to a nul-terminated binary string
The buffer must be large enough to hold the binary representation of the unsigned integer value passed to the function.
The return value is the pointer to the input buffer.
Parameters
Input | ||
Name | Type | Description |
unsignedIntegerValue | unsigned int | An unsigned integer value. |
Return Value
Name | Type | Description |
binaryString | char * | The return value is the pointer to the input buffer. |
Additional Information
Library: Programmer's Toolbox
Include file: toolbox\toolbox.h
LabWindows/CVI compatibility: LabWindows/CVI 2009 and later