Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use static in C language

2025-03-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

In this article, the editor introduces in detail "how to use static in c language". The content is detailed, the steps are clear, and the details are handled properly. I hope this article "how to use static in c language" can help you solve your doubts.

1. If a local variable is modified with static, it is a local static variable.

# include int main () {static int x = 0; / / Local static variable printf ("www.codersrc.com"); return 0;}

2. If a global variable is decorated with static, it is a global static variable.

# include static int x = 0; / / Global static variable int main () {printf ("www.codersrc.com"); return 0;}

3. If you modify a function with static, the function is static.

# include static int func () / / static function {printf ("static function"); return 0;} int main () {func (); printf ("www.codersrc.com"); return 0 } / * output: static function www.codersrc.com*/ has been read here, this article "how to use static in c language" has been introduced. If you want to master the knowledge of this article, you still need to practice and use it before you can understand it. If you want to know more about related articles, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 278

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report