+2 votes
in Class 12 by kratos

What is a constant? Declare a constant MAX and assign the value 10.

1 Answer

+2 votes
by kratos
 
Best answer

A constant is a name or an identifier whose value is fixed and cannot change during the ***** of the program.

define('MAX',10);

...