-
Notifications
You must be signed in to change notification settings - Fork 2
_uchar
bergsma edited this page Sep 26, 2014
·
5 revisions
#uchar
###Convert to an unsigned character value or create an unsigned character variable.
Syntax
result = uchar value ;
uchar variable [= value] ;
Arguments
- list value
A value of any type.
Return Value
uchar result
- ucharacter : An unsigned character value is any 8 bit ascii value, in printable form.
The STATUS variable is set to $ACKNOWLEDGE
When the argument is an array variable, all the elements in the array are converted, and the result will be a vector array uchar result
- ucharacter : An unsigned character value is any 8 bit ascii value, in printable form.
The STATUS variable is set to $ACKNOWLEDGE
When the argument is an array variable, all the elements in the array are converted, and the result will be a vector array
Exceptions
-
%ARGUMENT: Invalid arguments. Usage: uchar variable [= value] ;
-
%IDENTIFIER: 'variable' argument is not a valid identifier, literal, or reference
Description
- None
Examples
uchar x = { 233, 234, 235 } ;
put x ;
Related Links