home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / lang / c / 13557 < prev    next >
Encoding:
Text File  |  1992-09-11  |  886 b   |  28 lines

  1. Newsgroups: comp.lang.c
  2. Path: sparky!uunet!secapl!Cookie!frank
  3. From: frank@Cookie.secapl.com (Frank Adams)
  4. Subject: Re: Tool for measuring size (no. of statements) of C/C++ programs
  5. Message-ID: <1992Sep11.200457.69784@Cookie.secapl.com>
  6. Date: Fri, 11 Sep 1992 20:04:57 GMT
  7. References: <1992Aug31.230930.16232@gtephx.UUCP> <1992Sep1.141255.15547@organpipe.uug.arizona.edu>
  8. Organization: Security APL, Inc.
  9. Keywords: metrics, size, complexity, comparing versions
  10. Lines: 16
  11.  
  12. In article <1992Sep1.141255.15547@organpipe.uug.arizona.edu> dave@cs.arizona.edu (Dave Schaumann) writes:
  13. >       /* Presumably, no human would write a program with >65536
  14. >     * statements, but there's also code out there not (directly)
  15. >     * written by humans.
  16. >     */
  17. >    unsigned long Statement_Count = 0 ;
  18. >
  19. >    main() {
  20. >
  21. >      yyparse() ; printf( "%d statements.\n", Statement_Count ) ;
  22.                 ^
  23. Make that "%ld".
  24. >
  25. >    }
  26.  
  27.  
  28.