20 lines
425 B
TeX
20 lines
425 B
TeX
\begin{frame}[containsverbatim]
|
|
\frametitle{\secname}
|
|
\framesubtitle{\subsecname~II}
|
|
|
|
\begin{exampleblock}{Exemple de déclaration d'une fonction}
|
|
\begin{verbatim}
|
|
int toto(int a, long b);
|
|
\end{verbatim}
|
|
\end{exampleblock}
|
|
|
|
\begin{exampleblock}{Exemple d'implémentation d'une fonction}
|
|
\begin{verbatim}
|
|
int toto(int a, long b) {
|
|
instructions
|
|
}
|
|
\end{verbatim}
|
|
\end{exampleblock}
|
|
|
|
\end{frame}
|
|
|