Skip to content

section8_intro

Fábio Gaspar edited this page Jan 18, 2019 · 1 revision

Introduction to arrays

As you develop more and more complex programs, using elementar variables is not flexible enought for managing large amounts of data. In this section you will learn how to use arrays in C, which let you group information. Not only makes it easier to storing data, but also it's useful to solve some problems which require repetitive tasks in the data.

  1. Introduction to arrays
  2. The close relation between arrays and pointers
  3. Passing arrays to functions
  4. Working with matrixes/multidimensional arrays