home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 2
/
Apprentice-Release2.iso
/
Tools
/
MPW
/
GCC 1.37.1r15
/
Tests
/
bigstruct.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-04-05
|
194 b
|
16 lines
|
[
TEXT/MPS
]
/* Test of large structure copies and suchlike. */
struct bigstruct {
long slot1[10];
long slot2[30];
} glob1, glob2;
main()
{
int arr[50] = {1, 2, 3};
glob1 = glob2;
return arr[3];
}