home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / TESTCMT.C < prev    next >
C/C++ Source or Header  |  1997-07-05  |  436b  |  23 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. #ifdef __WATCOMC__
  4.  #pragma off (unreferenced);
  5. #endif
  6.  
  7. /* testcmt.c - test getcmt.exe - C comment 1 */
  8. int i;
  9. main()
  10. {
  11.     int j;
  12.     /* C comment 2 */
  13.     int k;
  14.     /* C comment 3 */
  15.     char ch2;    /* C comment 4 */  char ch3;   // C++ comment 1
  16.     // C++ comment 2
  17.     char ch4;
  18.     // C++ comment 3
  19.     i = 0;
  20.     return(i);
  21. }
  22. /* end of testcmt.c - C comment 5 */
  23.