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 / argorder3.c < prev    next >
Text File  |  1997-09-03  |  226b  |  14 lines

  1. int f (void)
  2. {
  3.   int i = 3;
  4.   int j;
  5.   int a[10];
  6.  
  7.   i = i++;        /* bad */
  8.   a[i] = i++;     /* bad */
  9.   a[i++] = i;     /* bad */ 
  10.   j = i++ * i;    /* bad */
  11.   j = i * i++;    /* bad */
  12.   j += --i * ++i; /* bad * 2 */
  13. }
  14.