Skip to content
Snippets Groups Projects
Commit ce828015 authored by Peter Gerwinski's avatar Peter Gerwinski
Browse files

Feinkorrekturen Vorbereitung 16.10.2017

parent 6ca0395f
Branches
No related tags found
No related merge requests found
No preview for this file type
...@@ -932,7 +932,7 @@ ...@@ -932,7 +932,7 @@
\pause \pause
\pause \pause
\begin{onlyenv}<1-9> \begin{onlyenv}<1-8>
\begin{lstlisting}[gobble=6] \begin{lstlisting}[gobble=6]
#include <stdio.h> #include <stdio.h>
...@@ -946,6 +946,20 @@ ...@@ -946,6 +946,20 @@
} }
\end{lstlisting} \end{lstlisting}
\end{onlyenv} \end{onlyenv}
\begin{onlyenv}<9>
\begin{lstlisting}[gobble=6]
#include <stdio.h>
int main (void)
{
int prime[5] = { 2, 3, 5, 7, 11 };
int *p = prime;
for (int i = 0; i < 5; i++)
printf ("%d\n", p[i]);
return 0;
}
\end{lstlisting}
\end{onlyenv}
\begin{onlyenv}<10-> \begin{onlyenv}<10->
\begin{lstlisting}[gobble=6] \begin{lstlisting}[gobble=6]
#include <stdio.h> #include <stdio.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment