home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tutorial / c__tutor / tctutr_2 / recurson.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-02-01  |  322 b   |  19 lines

  1.                                          /* Chapter 5 - Program 5 */
  2. main()
  3. {
  4. int index;
  5.  
  6.    index = 8;
  7.    count_dn(index);
  8. }
  9.  
  10. count_dn(count)
  11. int count;
  12. {
  13.    count--;
  14.    printf("The value of the count is %d\n",count);
  15.    if (count > 0)
  16.       count_dn(count);
  17.    printf("Now the count is %d\n",count);
  18. }
  19.