在C语言编程中,变量的哪些内容将存储在其中 只读数据部分?
void func( int i ){
printf("%d\n", i);
}
int main()
{
const str = "const string";
int b;
func(b);
return 0;
}
之前看看程序,我已经知道,将存储的内容 只读数据部分
constant string
喜欢“const str =”const string“”jump table(switch ... case)
printf/scanf fomat string
喜欢“%d \ n”。 我想念什么?对于普通的应用程序,它的大小是多少
只读数据部分?
GCC与LLVM之间的内容是否有任何区别
只读数据部分?