home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / splint3s.zip / splint-3.0.1.6 / test / sizeof.c < prev    next >
C/C++ Source or Header  |  2001-10-14  |  108b  |  10 lines

  1. int main()
  2. {
  3.   char x[3];
  4.   char y[3];
  5.   
  6.   x[(sizeof x)] = 'i';
  7.   y[((sizeof y) - 1)] = '0';
  8.   return 0;
  9. }
  10.