fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. {
  5. printf("¡Hola Mundo!\n"); // Muestra el texto en pantalla
  6. return 0; // Devuelve 0 al sistema operativo si todo es correcto
  7. } // your code goes here
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
¡Hola Mundo!