Generation

generate functionWed, 07 Jun 2023

Desarrollar un array de tamaño 5 y rellenarlo con datos numéricos por teclado

int array[5]; for(int i = 0; i < 5; i++){ printf("Element %d: ", i); scanf("%d", &array[i]); }

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