Generation

generate functionSun, 10 Mar 2024

Al presionar el botón se apagan los otros botones y si presionas alguno de ellos no funciona la dejarlo de presionar vuelven a funcionar y enciende

id apagar(int *botones){ for(int i = 0; i < 4; i++){ botones[i] = 0; } } void encender(int *botones){ for(int i = 0; i < 4; i++){ botones[i] = 1; } } void encender(int *botones){ for

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