gpt4 book ai didi

c - C语言变量是如何存储的(在堆栈、列表、树中?)它们存储在哪里?(在ram/hdd中)?

转载 作者:行者123 更新时间:2023-11-30 20:57:10 26 4
gpt4 key购买 nike

我有点困惑c变量如何存储在计算机的内存中
请解释它们存储在哪里以及以什么数据结构形式存储?

 #include<stdio.h>
#include<conio.h>
int main(void)
{
int r;
int a,b,c;
a=10;
b=20;
c=30;
char e=3;
int f[10]={1,2,3};

printf("the value of pointers is\n %d\n %d\n %d\n %d\n %d\n %d\n",&a,&b,&c,&e,&f,&r);
getch();
}

最佳答案

c 中有不同的存储类,示例中的存储类存储在堆栈中。

您可能应该首先阅读 c

关于c - C语言变量是如何存储的(在堆栈、列表、树中?)它们存储在哪里?(在ram/hdd中)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12845937/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com