Level 25
Level 27
3 words 0 ignored
Ready to learn
Ready to review
Ignore words
Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.
Ignore?
Defining Constants
Using #define preprocessor. Using const keyword.
#define identifier value
to use #define preprocessor to define a constant
const type variable = value;
to declare constants with a specific type