diff options
Diffstat (limited to 'test/testFuncs1.c')
-rw-r--r-- | test/testFuncs1.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/test/testFuncs1.c b/test/testFuncs1.c index 4312c79..20a40f2 100644 --- a/test/testFuncs1.c +++ b/test/testFuncs1.c @@ -730,10 +730,45 @@ void test7(void) {
double a[100];
+ double b[100];
+
+ char c[100];
+
double *pointer;
+ double* pointerb;
+
+ char* pointerc;
+
+ pointerb = b;
+
pointer = a;
+ pointerc = c;
+
+ if (a - b >= a)
+ {}
+ else if (b - a < a)
+ {}
+
+ if (a < b)
+ {}
+
+ if (pointer < pointerb)
+ {}
+
+ if (pointer > pointerb)
+ {}
+
+ if (pointerb <= pointer)
+ {}
+
+ if (pointer >= pointerb)
+ {}
+
+ if (pointer < pointerc)
+ {}
+
int i = 0;
for (i = 0; i < 50; i++)
|