|
|
|
|
|
by ramshorns
2721 days ago
|
|
Which part are you correcting? The declaration "int bar[3];" is an array of 3 ints, which are bar[0], bar[1] and bar[2]. Declaration mimics use but it's not exactly the same; in this case the size replaces the indices, which are all less than it. |
|