We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d91cefb commit 86383e1Copy full SHA for 86383e1
Language/Variables/Data Types/array.adoc
@@ -21,7 +21,7 @@ All of the methods below are valid ways to create (declare) an array.
21
----
22
int myInts[6];
23
int myPins[] = {2, 4, 8, 3, 6};
24
- int mySensVals[6] = {2, 4, -8, 3, 2};
+ int mySensVals[5] = {2, 4, -8, 3, 2};
25
char message[6] = "hello";
26
27
You can declare an array without initializing it as in myInts.
0 commit comments