In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-03 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 "the method of initializing the body array of c language structure". The content is detailed, the steps are clear, and the details are handled properly. I hope that this article "the method of initializing the body array of c language structure" can help you solve your doubts. Let's follow the editor's train of thought to learn new knowledge.
Initialization of structure array
The initialization of the structure array is the same as that of the basic data type array, and all elements can be initialized.
Transformation, initialization of some elements, etc.
Struct student
{
Int id
Char name [20]
Char gender
Double score
}
For the struct type student, here are several examples of struct array initialization.
1. Initialization of all elements of the array
The common form of all element initialization is branch initialization, where the initial values of each member of each struct type element are placed.
In a separate curly braces, this approach is more intuitive and clear. For example:
Struct student stu [2] = {{101l, "zhang", 'Lee, 90}}
When all element branches are initialized, you can omit the length of the array, for example:
Struct student stu [] = {{101l, "zhang", 'Lee, 90}}
When all elements are initialized, you can also omit the curly braces that distinguish each array element internally, and the above two initializations can also be
In the form of the following
Struct student stu [2] = {101,10, "zhang", 'Lee, 95,102, Lee, 90}
Struct student stu [] = {101, "zhang", 'Lee, 95,102, Lee, 90}
two。 Array partial element initialization
When initializing some elements of a structured array, the array length in the array definition cannot be omitted. You can initialize several elements of an array, with or without branches.
The following is an example of initializing the first two elements of an array in a branch manner
Struct student stu [10] = {{101l, "zhang", 'Lee, 90}}
The following is an example of initializing the first two elements of an array in an unbranched manner:
Struct student stu [10] = {101,102, "zhang", "Lee", "Lee" 90}
After reading this, the article "the method of initializing the c language structure array" has been introduced. If you want to master the knowledge points of this article, you still need to practice and use it yourself to understand it. If you want to know more related articles, 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: 240
*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.