Generation

generate functionSun, 26 Feb 2023

Una función que tome dos arreglos y haga algo con ellos

int[] suma(int a[], int b[]) { int c[]; for (int i=0;i<a.lenght;i++) { c[i] = a[i] + b[i]; } return c; }

Questions about programming?Chat with your personal AI assistant