This commit is contained in:
NikolajDanger
2022-05-22 14:19:34 +02:00
parent fa91bebcaa
commit fa5488e983
5 changed files with 9 additions and 9 deletions

View File

@ -135,11 +135,11 @@ slt w, x, y
\section{}
\subsubsection{}
\begin{lstlisting}
bool* y = (bool*)malloc(n);
bool* y = (bool*)malloc(n*4);
int i = 0;
while (i < n) {
ne = myop(ne, x[i]);
y[i] = ne;
ne = myop(ne, x[i*4]);
y[i*4] = ne;
i++;
}
\end{lstlisting}