coursc/pointeurs/02.tex

21 lines
574 B
TeX
Raw Permalink Normal View History

2014-02-24 17:38:56 +00:00
\begin{frame}[containsverbatim]
\frametitle{\secname}
\framesubtitle{\subsecname~II}
\begin{exampleblock}{Déclaration d'un pointeur sur short}
\begin{verbatim}
short * pnMonPointeur;\end{verbatim}
\end{exampleblock}
\vspace{0.3cm}
\begin{exampleblock}{Déclaration d'un pointeur sur structure}
\begin{verbatim}
struct Date * pMaDate;\end{verbatim}
\end{exampleblock}
\vspace{0.3cm}
\begin{exampleblock}{Déclaration d'un pointeur sur un pointeur d'int}
\begin{verbatim}
int ** ppiFirstElement;\end{verbatim}
\end{exampleblock}
\end{frame}