home *** CD-ROM | disk | FTP | other *** search
-
- main()
- {
- int n;
- testeven(5);
- n = testeven(14);
- printf("%d", n);
- }
-
- void testeven(n)
- int n;
- {
- if(n % 2 == 0)
- printf("%d is even\n",n);
- else
- printf("%d is odd\n",n);
- return(n);
- }
-
- /* the error message, stack underflow, results from the fact */
- /* that a function of type void cannot return a value, thus */
- /* the attempt to initialize n with a function which returns */
- /* nothing results in an underflow error */