|
|
RPC/XDR symbolic constants may be used wherever an integer constant is used, for example, in array size specifications.
const-definition: const const-ident = integerFor example, the following defines a constant, DOZEN, equal to 12.
const DOZEN = 12;This is converted to:
#define DOZEN 12