Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Merge pull request mouredev#6135 from FranzxFernandez/main
Browse files Browse the repository at this point in the history
Reto mouredev#5 - c
  • Loading branch information
Roswell468 authored Dec 21, 2023
2 parents 559ddc1 + e7deac5 commit 5cbac74
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Retos/Reto #5 - HOLA MUNDO [Fácil]/c/FranzxFernandez.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*
* Escribe un !Hola Mundo! en todos los lenguajes de programación que puedas.
* Seguro que hay algún lenguaje que te llama la atención y nunca has utilizado,
* o quizás quieres dar tus primeros pasos... ¡Pues este es el momento!
*
* A ver quién se atreve con uno de esos lenguajes que no solemos ver por ahí...
*/

#include <stdio.h>


int main(int argc, char const *argv[])
{
char *temp = "Hello Wordl!\n";
puts(temp);
return 0;
}

0 comments on commit 5cbac74

Please sign in to comment.