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; }

Want to kickstart your project?Use the new AI Studio to create your code