home *** CD-ROM | disk | FTP | other *** search
- main() /* return.c -- converts a value in test(), illustrating return */
- {
- int a;
- int b;
- a = 27;
- b = 3;
- a = test(a,b);
- printf("But in main() A is equal to %d and B to %d.\n", a, b);
- puts("Correct second line: A is equal to 9 and B to 3.");
- }
-
- test(a,b)
- int a;
- int b;
-
- {
- a = a / 3;
- b = b * 3;
- printf("In test() function A = %d; B = %d.\n", a, b);
- return(a);
- puts("This should not print");
- }