Generation

generate functionFri, 26 May 2023

un programa Que muestre una pantalla un menú con una opciones y termine el programa cuando el usuario seleccione salir con for

#include <stdio.h> #include <stdlib.h> int main() { char c; printf("\nEnter any character: "); scanf("%c", &c); printf("\nASCII value of %c = %d", c, c); return(0); }

Questions about programming?Chat with your personal AI assistant