Message-ID: <012f01c00c03$62f480c0$0307028a@prmivv03> From: "Petr Maxa" To: References: <8nkfqr$hhj$2 AT info DOT cyf-kr DOT edu DOT pl> Subject: Re: problems with new Date: Tue, 22 Aug 2000 08:37:04 +0200 Organization: SSE s.p. Zilina MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-MIME-Autoconverted: from 8bit to quoted-printable by inzas2.sse-za.sk id JAA28937 Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id DAA01804 Reply-To: djgpp AT delorie DOT com Rafał Maj wrote > #2 char *ptr = new[100*1024*1024]; You forgotten specify a type for the new command: char *ptr = new char [100*1024*1024]; Petr Maxa