Matt Suiche 0c9e8df91c Add 'Security Research and Development with LLVM - Andrew Reiter/' from commit '0605b5174c2bc286d3e95d6c0df620800bef96c7'
git-subtree-dir: Security Research and Development with LLVM - Andrew Reiter
git-subtree-mainline: aa7a9fc1e16c3c5be7ba312c4b4e37775e005101
git-subtree-split: 0605b5174c2bc286d3e95d6c0df620800bef96c7
2017-04-29 17:11:06 +04:00

14 строки
194 B
C

#include <stdio.h>
int
main(int argc, char **argv)
{
unsigned z = 0;
if (argc <= 0) argc = 30;
for (unsigned k = 0; k < argc; ++k) {
z += k * 2;
}
printf("zeta: %u\n", z);
return 0;
}