C1026: Constant must be initialized

[ERROR]

Description

The specified identifier was declared as const but was not initialized.

Example
  const int i;         // error

  
  extern const int i;  // ok

  
Tips

Initialize the constant object, or remove the const specifier from the declaration.