Skip to content

Instantly share code, notes, and snippets.

@FacuM
Created January 11, 2017 04:33
Show Gist options
  • Save FacuM/5377363db6860ede079346b4b9ca2708 to your computer and use it in GitHub Desktop.
Save FacuM/5377363db6860ede079346b4b9ca2708 to your computer and use it in GitHub Desktop.
Hello world example (Spanish)
#include <stdio.h>
/* Las funciones se declaran como enteros.*/
int main() {
/* Se escribe en una línea con printf. Nueva línea es \n */
printf ("Hola mundo!");
/* return 0 indica que, si el código pasa correctamente y llega hasta el final, el código de error DEBE ser 0 (es decir, ninguno).*/
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment