aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-06-30 12:34:35 +0100
committerYann Herklotz <git@yannherklotz.com>2020-06-30 12:34:35 +0100
commitf26f3887d0b0ac286c317a5425a3a4781871cfc2 (patch)
treeef89abc630bcc6087b38aba18fd859311e2d3ed1 /test
parentae3f6b6096ab2484c1b3dcfab7f3f72bcfd268d5 (diff)
downloadvericert-f26f3887d0b0ac286c317a5425a3a4781871cfc2.tar.gz
vericert-f26f3887d0b0ac286c317a5425a3a4781871cfc2.zip
Add command line flags for initial block
Diffstat (limited to 'test')
-rw-r--r--test/loop.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/loop.c b/test/loop.c
index b459e3a..52e4fe9 100644
--- a/test/loop.c
+++ b/test/loop.c
@@ -1,10 +1,12 @@
int main() {
int max = 5;
int acc = 0;
+ int b = 1;
+ int c = 2;
- for (int i = 0; i < max; i++) {
+ for (int i = 0; i < max; i = i + b) {
acc += i;
}
- return acc + 2;
+ return acc + c;
}