我有一个变量,我想在程序的其余部分运行之前在运行时初始化。初始化后,我不希望变量的值改变。是否有任何 C 语言结构可以执行此操作?
让我的主 C 程序包含在一个文件 Prog.c 中
//Contents of Prog.c
//...includes.. and variable initialization
int main(..)
{
//Initialize variables here
//.. Huge program after this where I don't want these constants to change
}