home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Compilers⁄Interps
/
GCC 1.37.1r15 Full
/
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];
}