home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / GENCSRC.ZIP / SCOPE.C < prev    next >
C/C++ Source or Header  |  1987-11-21  |  1KB  |  48 lines

  1.                                           /* Chapter 5 - Program 4 */
  2. #include "stdio.h"      /* Prototypes for Input/Output             */
  3. void head1(void);       /* Prototype for head1                     */
  4. void head2(void);       /* Prototype for head2                     */
  5. void head3(void);       /* Prototype for head3                     */
  6.  
  7. int count;              /* This is a global variable               */
  8.  
  9. main()
  10. {
  11. register int index; /* This variable is available only in main */
  12.  
  13.    head1();
  14.    head2();
  15.    head3();
  16.                       /* main "for" loop of this program */
  17.    for (index = 8;index > 0;index--) {
  18.       int stuff;  /* This variable is only available in these braces*/
  19.       for (stuff = 0;stuff <= 6;stuff++)
  20.          printf("%d ",stuff);
  21.       printf(" index is now %d\n",index);
  22.     }
  23. }
  24.  
  25. int counter;      /* This is available from this point on */
  26. void head1(void)
  27. {
  28. int index;        /* This variable is available only in head1 */
  29.  
  30.    index = 23;
  31.    printf("The header1 value is %d\n",index);
  32. }
  33.  
  34. void head2(void)
  35. {
  36. int count;  /* This variable is available only in head2 */
  37.             /* and it displaces the global of the same name */
  38.  
  39.    count = 53;
  40.    printf("The header2 value is %d\n",count);
  41.    counter = 77;
  42. }
  43.  
  44. void head3(void)
  45. {
  46.    printf("The header3 value is %d\n",counter);
  47. }
  48.