[SPCA] Start arrays overview

This commit is contained in:
2026-01-05 18:10:12 +01:00
parent 2067bdb190
commit 80997f5c15
4 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
\newpage
\subsubsection{Arrays}
\lC\ compiler does not do any array bound checks! Thus, always check array bounds.
Unlike some other programming languages, arrays are \bi{not} dynamic length.
The below snippet includes already some pointer arithmetic tricks. The variable \texttt{data} is a pointer to the first element of the array.
\inputcodewithfilename{c}{code-examples/00_c/}{03_arrays.c}