Skip to content

Instantly share code, notes, and snippets.

@parzibyte

parzibyte/leer.c Secret

Created December 30, 2020 03:26
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/c3d7793c2c42d5c0608810f65dc08559 to your computer and use it in GitHub Desktop.
Save parzibyte/c3d7793c2c42d5c0608810f65dc08559 to your computer and use it in GitHub Desktop.
// https://parzibyte.me/blog
#include <stdio.h>
int main(void) {
double numero;
printf("Ingresa un double: ");
scanf("%lf", &numero);
printf("El double ingresado es: %lf", numero);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment