diff options
author | Akshay <[email protected]> | 2021-05-07 06:07:28 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2021-05-07 06:07:28 +0100 |
commit | 896e4859333c6be801391ae9bbeec425f6e32f86 (patch) | |
tree | e1f100a81c1dccce2bf8aa546b8ef4b538d9e666 /12/input | |
parent | da1764a9f839e1d29b2bee12d35534f71f05c6ff (diff) |
add prog 12: function definition
Diffstat (limited to '12/input')
-rw-r--r-- | 12/input | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/12/input b/12/input new file mode 100644 index 0000000..fa64ab2 --- /dev/null +++ b/12/input | |||
@@ -0,0 +1,6 @@ | |||
1 | int main(int a, int b, int c) { | ||
2 | if (a > b) { | ||
3 | for(;;); | ||
4 | a++; | ||
5 | } | ||
6 | } | ||