Arrays in C — a practical guide to C arrays with clear examples you can reuse in real projects.
C Programming Tutorial Series (45/102). Prefer one article? Read the complete C programming tutorial.
Short description
Array size is not carried at runtime — pass length explicitly.
Array
int scores[5] = {90, 85, 88, 92, 80};