-1

It's a long time since I did any coding of any sort.

I'm trying to remember the name (in C) of an item you put at the beginning of your code that allows compilation to a constant for efficiency but can have its value adjusted before compilation if necessary.

What is it called? (specifically the name in C and optionally the name in general)

Thanks.

1 Answers1

2

#define statements allow you to define a constant at the beginning of your code.

Lublaut
  • 339
  • 4
  • 11