You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SAE-2.02/sections/partie1.tex

24 lines
587 B

% Section Partie 1 - SAE 2.02
\documentclass[class=article, crop=false]{standalone}
%\usepackage[subpreambles=true]{standalone}
%\usepackage{listings}
\begin{document}
\section{Partie 1}
\subsection{Question 1}
% insert struct code here
\begin{lstlisting}[language=C]
typedef struct pointCaracteristique {
char nom[NAME_MAX_LEN];
struct pointCaracteristique *tPtsCaract;
} PointCaracteristique;
\end{lstlisting}
\subsection{Question 2}
\quad Un point caractéristique n'a besoin de connaître que les points qu'il peut atteindre.
\end{document}