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

An example Analysis of the Parameter problem of main () function in C language

2025-02-25 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces the C language main () function parameters of the example analysis, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let the editor with you to understand.

# includevoid main (int argc, char* argv []) {while (argc > 1) {+ + argv; printf ("% s\ n", argv);-- argc;}}

# include#includevoid main (int argc, char* argv []) {int i; printf ("The number of string is:% d\ n", argc-1); for (I = 1; I

< argc; i++) { printf("the string %d is:%s\n", i, argv[i]); }}

# includevoid main (void) {const char* str = "Welcome to Fishc.com!\ n\ n"; / / this statement means: declare a pointer variable named str, / / it points to a character variable, and initialize str to point to the string / / "Welcome to Fishc.com!\ n\ n" # if (0) str [0] ='w' # endif str = "I love Fisfc.com!\ n\ n"; printf ("\ n\ n% s", str);}

# includevoid main (void) {char* const str = "Welcome to Fishc.com!\ n\ n"; / / the constant pointer is a fixed pointer and its value cannot be changed, but the data it refers to can be changed str [0] = 'wishful positioning if (0) str = "I love Fisfc.com!\ n\ n"; # endif printf ("\ n\ n% s", str);}

There's a problem

Thank you for reading this article carefully. I hope the article "example Analysis of main () function parameters in C language shared by the editor will be helpful to you. At the same time, I also hope you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!"

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: 0

*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

Development

Wechat

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

12
Report