- 2
- 0
- 约7.01千字
- 约 10页
- 2019-06-11 发布于广东
- 举报
C函数.数组.指针和调试器gdb—函数一变量的访问控制和存储类
1, variable access control
Variables arc divided into two categories according to their access scope in the program: local variables and global variables? A local variable is a variable defined within a function. It is only valid inside a function and cannot be accessed outside of a function. Such as: (main)
Int functionl (int, a, int, b)
Float function2 (int a)
Int m;
The variables defined within each function can only be used within the function, but only within the function. The main function is no exception, and the variables I and j defined by the main fun
原创力文档

文档评论(0)