CHAR: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
(9 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
Single-byte character. | |||
== Type == | |||
[[char]] | |||
===C Declaration Method=== | |||
#define | |||
===Example=== | |||
#define CHAR char | |||
==NPCHAR== | |||
Near pointer to a character. | |||
typedef CHAR NEAR *NPCHAR; | |||
== | ==PCHAR== | ||
Pointer to a character. | |||
typedef CHAR *PCHAR; | |||
[[ | [[Category:Data type]] |
Latest revision as of 18:53, 25 May 2024
Single-byte character.
Type
char
C Declaration Method
#define
Example
#define CHAR char
NPCHAR
Near pointer to a character.
typedef CHAR NEAR *NPCHAR;
PCHAR
Pointer to a character.
typedef CHAR *PCHAR;