:hardcoded: adj. 1. Said of data inserted directly into a program,
where it cannot be easily modified, as opposed to data in some
{profile}, resource (see {de-rezz} sense 2), or environment
variable that a {user} or hacker can easily modify. 2. In C,
this is esp. applied to use of a literal instead of a
`#define' macro (see {magic number}).
-- The AI Hackers Dictionary
profile n.
1. A control file for a program, esp. a text
file automatically read from each user's home directory and
intended to be easily modified by the user in order to customize
the program's behavior....
magic number n.
[Unix/C; common] 1. In source code
some non-obvious constant whose value is significant to the
operation of a program and that is inserted inconspicuously in-line
(hardcoded), rather than expanded in by a symbol set by a
commented #define....