Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 31, 2020 00:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/7700abd98ad48193c64140e3e5c0a392 to your computer and use it in GitHub Desktop.
Save parzibyte/7700abd98ad48193c64140e3e5c0a392 to your computer and use it in GitHub Desktop.
/*
https://parzibyte.me/blog
*/
#include <stdio.h>
#define MAXIMA_LONGITUD_CADENA 50
int main(int argc, char const *argv[])
{
char nombre[MAXIMA_LONGITUD_CADENA];
printf("Ingresa tu nombre completo: ");
scanf("%s", nombre);
printf("Hola, %s", nombre);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment