summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/alterqcm/examples/iut/qcm-3.tex
blob: 48a3c89c2de35dc3b2a963e391380bf54e5d7a58 (plain)
1
2
3
4
\AQquestion{What's the correct syntax for shifting the integer \texttt{a} eight bits to the left?}
{{\texttt{b = lshift(a, 8) ;}},
 {\texttt{b = 8 << a ;}},
 {\texttt{b = a << 8 ;}}}