You get a bonus - 1 coin for daily activity. Now you have 1 coin

8.9. Using arrays when implementing loops.

Lecture



The very concept of an array in the C language does not change. When declaring an array, the general name of the array elements, the dimension and its type are indicated.
Example:
int a [20];
In this case, the last element in the array will have an index of 19, since Numbering starts with zero. Appeal to a single element is organized by the name of the array and the index of the element.
Each line in the C language is a character array, but not every character array is a string. A string is an array, the last value of which will be the zero element.

Comments


To leave a comment
If you have any suggestion, idea, thanks or comment, feel free to write. We really value feedback and are glad to hear your opinion.
To reply

Algorithmization and programming. Structural programming. C language

Terms: Algorithmization and programming. Structural programming. C language