MWE:
\documentclass{article}
\usepackage{minted}
\begin{document}
\begin{minted}{c}
int main() {
printf("hello, world");
return 0;
}
\end{minted}
\end{document}
MWE:
\documentclass{article}
\usepackage{minted}
\begin{document}
\begin{minted}{c}
int main() {
printf("hello, world");
return 0;
}
\end{minted}
\end{document}
pdflatex --shell-escape documentnotpdflatex documentto allow pdftex to call pygmentize to style the code. – David Carlisle Nov 02 '18 at 09:39