All pastes #2046105 Raw Edit

Stuff

public text v1 · immutable
#2046105 ·published 2011-04-13 19:13 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;
}