CUNSG
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgCunsg
- Last revised: 2016-03-12
Converts an expression to unsigned
Syntax
` Cunsg ( expression )
`
Usage
` variable = Cunsg ( expression )
Converts a signedexpressionto an unsigned one, useful to force unsigned behavior of division or multiplication (including withShlandShr`).
This is the opposite of Csign.
Examples
start GeSHi
vb
Dim value As Short = -1
Print CUnsg(value) '' will print 65535end GeSHi
Dialect Differences
- Not available in the -lang qb dialect unless referenced with the alias
__Cunsg.
Differences from QB
- New to FreeBASIC
See also
Csign
Back to DocToc