All pastes #2046103 Raw Edit

Stuff

public text v1 · immutable
#2046103 ·published 2011-04-13 19:11 UTC
rendered paste body
int *foo(int *a, int n)
{
  int c[n],i,j;
for(i=0;i<n;i++)
{ 
  c[i]=0
  for(j=0;j<n;j++)
    c[i]+=*(a+i+j);
}
 return c;
}