home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MAGAZINE
/
MISC
/
PCTV1N5.ZIP
/
INDMEM.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1990-09-07
|
363 b
|
24 lines
struct screencoords
{
int x;
int y;
} coords;
void printcoords( struct screencoords *val );
main()
{
coords.x = 100;
coords.y = 200;
printcoords( &coords );
}
void printcoords( struct screencoords *val )
{
printf( "X coordinate = %d\n", val->x );
printf( "Y coordinate = %d\n", val->y );
}