home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!mcsun!chsun!zurich!gegu
- From: gegu@zurich.spectrospin.ch (Gerry Gucher)
- Newsgroups: comp.lang.c
- Subject: Re: HALLOC and HUGE ptrs in Microsoft C
- Summary: oops
- Message-ID: <207@zurich.spectrospin.ch>
- Date: 24 Jan 93 23:54:37 GMT
- References: <1993Jan21.175608.4279@arizona.edu> <206@zurich.spectrospin.ch>
- Distribution: world,local
- Organization: Spectrospin AG, Fallanden Switzerland
- Lines: 15
-
- In article <206@zurich.spectrospin.ch>, gegu@zurich.spectrospin.ch (Gerry Gucher) writes:
-
-
-
- > instead : fwrite( buf, 200000, sizeof(int), fp );
- > try : fwrite( buf, 2000, 1000*sizeof(int), fp );
- >
- > I have not tried it but it might work.
-
- Oops, I blew it. It sure wouldn't work. Should say
-
- try : fwrite( buf, 200, 1000*sizeof(int), fp );
-
- Gerry
-
-