-- 1 #include <stdlib.h>
-- 2 #include <stdio.h>
-- 3
-- 4
2 5 int main(argc, argv)
-- 6 int argc;
-- 7 char **argv;
-- 8
-- 9 {
-- 10 int x, y;
2 11 x = 100;
2 12 y = 250;
2 13 testFunctionName(x + y);
-- 14
2 15 printf("The value of x is %d. \n", x);
-- 16
2 17 if (x > y) {
0 18 printf("X is bigger.");
-- 19 } else {
2 20 printf("Y is bigger.");
-- 21 }
-- 22
2 23 int z = 0;
2 24 int i = 0;
502 25 for (; i < y; i++) {
500 26 z = -z + 2*i;
-- 27 }
-- 28
2 29 printf("The value of z is %d.\n", z);
-- 30
2 31 exit(0);
-- 32
-- 33 }
-- 34
2 35 int testFunctionName(a)
-- 36 int a;
-- 37
-- 38 {
-- 39 int b;
2 40 b = a << 2;
2 41 printf("%i times 4 = %i\n", a, b);
2 42 return b;
-- 43 }