home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lclint.zip / lclint-2_3h-os2-bin.zip / test / charlit.c < prev    next >
Text File  |  1997-09-03  |  129b  |  13 lines

  1. int f (void)
  2. {
  3.   int x = 'a';
  4.   double z = 3;
  5.  
  6.   x = x + 'c' + 2 + z;
  7.  
  8.   return 'a';
  9. }
  10.  
  11. short s[] = { 0, -1 } ;
  12. unsigned u = -3;
  13.