Skip to content

Instantly share code, notes, and snippets.

@abainbridge
abainbridge / part1.md
Last active November 2, 2024 14:39
Pointers in C: Part 1

Pointers and Arrays: Part 1

Pointers are kinds of variables and play a very important role in C programming language. They have many uses, such as:

  • Strings
  • Dynamic memory allocation
  • Getting multiple results from a function
  • Building data structures