Lecture 02: [Review] C programming core syntax summary enhancement and common problem analysis
Original link: https://chenyan98.cn/3643.html 1. About variables [1] Variable types: Local variables (variables used inside a method can only be used by the method itself) (destructed when the method is executed) Member variables (defined outside the method and inside the class, you can Used by other methods inside the class) Destroy global variables (usually public static […]