On Sun, Apr 5, 2009 at 12:13 AM, Tyler Littlefield <ty...@tysdomain.com> wrote:
> yeah, just use int val[128]; then initialize it with something like:
> for (int i=0;i<128;i++)
> {
> val[i]=0;
> }

There's an even easier way to do it:

int val[SIZE] = { 0 }

-- 
Tamas Marki

Reply via email to