1: struct z{
   2:     int i,j,k;
   3: } ;
   4: 
   5: main() {
   6:     struct z a;
   7: 
   8:     a.i = 3;
   9:     a.j = 4;
  10:     a.k = 5;
  11: 
  12:     sub(a,12);
  13: 
  14:     printf("Hello sailor\n");
  15:     abort();
  16: }
  17: 
  18: sub(y,m)
  19: struct z y; {
  20:     y.i++;
  21: }

Defined functions

main defined in line 5; never used
sub defined in line 18; used 1 times
  • in line 12

Defined struct's

z defined in line 1; used 4 times
  • in line 6(2), 19(2)
Last modified: 1982-10-04
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 692
Valid CSS Valid XHTML 1.0 Strict