Re: how to create an array for 15000 integers?
- From: CBFalconer <cbfalconer@xxxxxxxxx>
- Date: Sat, 16 Dec 2006 19:32:50 -0500
jacob navia wrote:
.... snip ...
I need to do an array with around 15000 integers in it.
I have declared it as unsigned letter[13000];
But the compiler is saying that this is too much.
How can I create an array for 15000 integers?
Either declare it as static, or as file scope, or assign the space
with malloc.
--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>
.
- References:
- how to create an array for 15000 integers?
- From: David
- Re: how to create an array for 15000 integers?
- From: jacob navia
- Re: how to create an array for 15000 integers?
- From: Richard Bos
- Re: how to create an array for 15000 integers?
- From: jacob navia
- Re: how to create an array for 15000 integers?
- From: CBFalconer
- Re: how to create an array for 15000 integers?
- From: jacob navia
- Re: how to create an array for 15000 integers?
- From: Richard Bos
- Re: how to create an array for 15000 integers?
- From: jacob navia
- how to create an array for 15000 integers?
- Prev by Date: parse two field file
- Next by Date: Re: Additional resources to understand C better.
- Previous by thread: Re: how to create an array for 15000 integers?
- Next by thread: Re: how to create an array for 15000 integers?
- Index(es):
Relevant Pages
|