In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
I would like to share with you what the second-level pointer in c language means. I believe most people don't know much about it, so share this article for your reference. I hope you will learn a lot after reading this article. Let's learn about it.
Description
1. The secondary pointer is actually the pointer to the pointer, and the pointer to the pointer is in the form of multi-level indirect addressing or pointer chain.
Three-level or N-level pointers can also be established, but generally can not use multi-level pointers, only secondary pointers need to be used in some cases.
2. The two-dimensional pointer is mainly used for the newly generated variables in the subfunction and needs to return the main function.
Example
# include int main () {int one = 10 one / this is a variable one int * two=&one;// variable preceded by an asterisk and its value is & one,&one indicates the address of the variable one in memory, and then * two points to the address of the variable one, which is equivalent to the variable two is the value of one int * * three=&two / / the variable three is preceded by two asterisks and its value is & two,&two indicates the in-memory address of the value of the variable two, and then * * three points to the address of the variable two, which is equivalent to the variable three is the value of two int * four=&three / / the variable four is preceded by three asterisks and its value is & three,&three indicates the in-memory address of the value of the variable three, and then the address of the four pointing to the variable three is equivalent to the value of the variable four is the value of three ("% d", * four); / / the last output here is the value of the variable one. Return 0;} above is all the content of the article "what does the second-level pointer in c language mean?" Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, 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: 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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.