Skip to content
Snippets Groups Projects
Commit 49f5f093 authored by orestis.malaspin's avatar orestis.malaspin
Browse files

updated iterations

parent ff5616b2
Branches
No related tags found
No related merge requests found
Pipeline #6279 passed
...@@ -265,6 +265,11 @@ while (j < 10) { ...@@ -265,6 +265,11 @@ while (j < 10) {
x[j] = 1; x[j] = 1;
j += 1; j += 1;
} }
int j = 0;
do {
x[j] = -1;
j += 1;
} while (j < 9)
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment