All pastes #2046104 Raw Edit

Stuff

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