defense/src/lst/intro/loop_seq.tex

5 lines
75 B
TeX

\begin{cppcode}
for(int i = 1; i < N; ++i)
a[i] = a[i-1];
\end{cppcode}