21 lines
495 B
TeX
21 lines
495 B
TeX
\begin{frame}[containsverbatim]
|
|
\frametitle{\secname}
|
|
\framesubtitle{\subsecname~III}
|
|
|
|
\begin{exampleblock}{Exemple de fonction avec paramètres}
|
|
\begin{verbatim}
|
|
short toto(long titi, char tata) {
|
|
instructions
|
|
}
|
|
\end{verbatim}
|
|
\end{exampleblock}
|
|
|
|
\begin{exampleblock}{Exemple de fonction avec nombre de paramètres variable}
|
|
\begin{verbatim}
|
|
short toto(long titi, char tata, ...) {
|
|
instructions
|
|
}
|
|
\end{verbatim}
|
|
\end{exampleblock}
|
|
\end{frame}
|
|
|