Generation

generate functionTue, 04 Jul 2023

como detener con ctrl+c un programa c++ que contiene system("") en un while true

#include <iostream> void funcion(){ system("pause"); } int main(){ while(true){ funcion(); } return 0; }

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