aboutsummaryrefslogtreecommitdiffstats
path: root/overcomplicated_loop.c
diff options
context:
space:
mode:
authorEliteTK <tomasz.kramkowski@gmail.com>2014-07-10 22:36:56 +0100
committerEliteTK <tomasz.kramkowski@gmail.com>2014-07-10 22:36:56 +0100
commitb60441758f9832a67f60e51a4ee92d16b166b9fb (patch)
tree7388adc9743181457834cc5eed95e3c452266ab0 /overcomplicated_loop.c
parenta26f2837166f7232d13322e013883ed003d46f27 (diff)
parenta8609ccd901b1942e862c14205026d841e640add (diff)
downloadc-stuff-b60441758f9832a67f60e51a4ee92d16b166b9fb.tar.gz
c-stuff-b60441758f9832a67f60e51a4ee92d16b166b9fb.tar.xz
c-stuff-b60441758f9832a67f60e51a4ee92d16b166b9fb.zip
Merge branch 'master' of https://github.com/EliteTK/c-stuff
Conflicts: xcb.c
Diffstat (limited to 'overcomplicated_loop.c')
-rw-r--r--overcomplicated_loop.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/overcomplicated_loop.c b/overcomplicated_loop.c
new file mode 100644
index 0000000..a843a8a
--- /dev/null
+++ b/overcomplicated_loop.c
@@ -0,0 +1,27 @@
+#include <setjmp.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <time.h>
+
+static jmp_buf env;
+
+int main (void)
+{
+ srand(time(NULL));
+ int a = 0;
+ while (a == 0) {
+ a += rand() * time(NULL);
+ float c = 1 / a;
+
+ for (int b = 20; !setjmp(env); b -= 21) {
+ if ((a / b) < 20)
+ c *= c;
+
+ if (c == a)
+ longjmp(env, 0);
+ /*
+ * Your code here.
+ */
+ }
+ }
+}