home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / RETURN.C < prev    next >
Encoding:
Text File  |  1985-02-17  |  424 b   |  23 lines

  1. main()    /* return.c -- converts a value in test(), illustrating return */
  2. {
  3. int a;
  4. int b;
  5.     a = 27;
  6.     b = 3;
  7.     a = test(a,b);
  8.     printf("But in main() A is equal to %d and B to %d.\n", a, b);
  9. puts("Correct second line: A is equal to 9 and B to 3.");
  10. }
  11.  
  12. test(a,b)
  13. int a;
  14. int b;
  15.  
  16. {
  17.     a = a / 3;
  18.     b = b * 3;
  19.     printf("In test() function A = %d; B = %d.\n", a, b);
  20.     return(a);
  21. puts("This should not print");
  22. }
  23.