coursc/structure/13.tex

17 lines
391 B
TeX
Raw Normal View History

2014-02-24 17:38:56 +00:00
\begin{frame}[containsverbatim]
\frametitle{\secname}
\framesubtitle{\subsecname~I}
Une fonction retourne une valeur à la fonction appelante par l'intermédiaire du mot-clé \verb|return|.
\vspace{0.5cm}
\begin{block}{Retour d'une fonction}
\begin{verbatim}
type_retour nom_fonction() {
instructions
return expression;
}
\end{verbatim}
\end{block}
\end{frame}