-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prueba agreagando holamundos otra vez
- Loading branch information
deybis
committed
Sep 15, 2024
1 parent
3eda1bf
commit 7c177ad
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Para ejecutar puede escribir en la terminal: | ||
// sh runc.sh holamundo | ||
// O bien hacerlo manualmente con make: | ||
// make holamundo && ./holamundo && rm -f holamundo | ||
// Ejecutando con clang: | ||
// clang holamundo.c && ./a.out && rm -f a.out | ||
// Ejecutando con gcc: | ||
// gcc holamundo.c && ./a.out && rm -f a.out | ||
|
||
#include <stdio.h> | ||
|
||
int main(void) { | ||
printf("Hola mundo\n"); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Para ejecutar escriba en la terminal: | ||
# python holamundo.py | ||
|
||
print("Hola mundo") |