1: typedef enum { RED, GREEN, BLUE } Color;
   2: 
   3: main()
   4: {
   5:     Color c;
   6: 
   7:     c = BLUE;
   8:     f(RED);
   9: }
  10: 
  11: f(c)
  12: Color c;
  13: {
  14:     printf("c = %d\n", c);
  15: }

Defined functions

f defined in line 11; used 1 times
  • in line 8
main defined in line 3; never used
Last modified: 1985-03-08
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 447
Valid CSS Valid XHTML 1.0 Strict