_RESETBIT

From QB64 Phoenix Edition Wiki
Revision as of 14:01, 19 April 2022 by BigRon55 (talk | contribs) (Created page with "{{DISPLAYTITLE:_RESETBIT}} The _RESETBIT function is used to set a specified bit of a numerical value to 0 (OFF state). {{PageSyntax}} :{{Parameter|result}} = _RESETBIT({{Parameter|numericalVariable}}, {{Parameter|numericalValue}}) {{Parameters}} * {{Parameter|numericalVariable}} is the variable to set the bit of and can be of the following types: _BYTE, INTEGER, LONG, or _INTEGER64. * Integer values can be signed or _UNSIGNED. * {{Paramet...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The _RESETBIT function is used to set a specified bit of a numerical value to 0 (OFF state).


Syntax

result = _RESETBIT(numericalVariable, numericalValue)


Template:Parameters

  • numericalVariable is the variable to set the bit of and can be of the following types: _BYTE, INTEGER, LONG, or _INTEGER64.
  • Integer values can be signed or _UNSIGNED.
  • numericalValue the number of the bit to be set.


Description

  • Can be used to manually manipulate individual bits of an integer value by setting them to 0 (OFF state).
  • Resetting a bit that is already set to 0 will have no effect.
  • Bits start at 0 (so a _BYTE has bits 0 to 7, INTEGER 0 to 15, and so on)

Availability

  • Version 1.4 and up.


Examples

Example 1:

A~%% = 0 '_UNSIGNED _BYTE
PRINT A~%%
A~%% = _SETBIT(A~%%,6) 'set the seventh bit of A~%%
PRINT A~%%
A~%% = _RESETBIT(A~%%,6) 'Reset the seventh bit of A~%%
PRINT A~%%
 0
 64
 0


See also


Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link