Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 23:18
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/c658182c31ca524dcbac6e800e43c19b to your computer and use it in GitHub Desktop.
Save parzibyte/c658182c31ca524dcbac6e800e43c19b to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, char const *argv[])
{
double miVariable = 666;
int tamanio = sizeof(miVariable);
printf("La variable de tipo double ocupa %d bytes\n", tamanio);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment