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 >
Wrap
C/C++ Source or Header
|
2001-10-14
|
108b
|
10 lines
int main()
{
char x[3];
char y[3];
x[(sizeof x)] = 'i';
y[((sizeof y) - 1)] = '0';
return 0;
}