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

  1.  
  2. main()
  3. {
  4. int n;
  5.     testeven(5);
  6.     n = testeven(14);
  7.     printf("%d", n);
  8. }
  9.  
  10. void testeven(n)
  11. int n;
  12. {
  13.     if(n % 2 == 0)
  14.         printf("%d is even\n",n);
  15.     else
  16.         printf("%d is odd\n",n);
  17.     return(n);
  18. }
  19.  
  20. /* the error message, stack underflow, results from the fact */
  21. /* that a function of type void cannot return a value, thus  */
  22. /* the attempt to initialize n with a function which returns */
  23. /* nothing results in an underflow error */
  24.