成都网站建设设计

将想法与焦点和您一起共享

020_什么是变量.cpp

/*
    时间:2018年12月27日 星期四 14:34:46
    内容:什么是变量
*/
# include 

int main(void)
{
    int i;

    i = 3;  //3最终是存放在内存中,程序终止之后3所占的空间被释放掉
    printf("i = %d\n", i);

    return 0;
}
/*
------------------------------
在Dev-C++5.11下运行结果:
i= 3
------------------------------
*

网站题目:020_什么是变量.cpp
文章来源:http://chengdu.cdxwcx.cn/article/ghcgpc.html