Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 3, 2019 04:56
Show Gist options
  • Save parzibyte/088069bb8d6dd3f11f091e855cf0a6d3 to your computer and use it in GitHub Desktop.
Save parzibyte/088069bb8d6dd3f11f091e855cf0a6d3 to your computer and use it in GitHub Desktop.
int main(void) {
int numero = 10, posibleMultiplo = 2;
// Comprobar
int resultado = esMultiplo(numero, posibleMultiplo);
if (resultado) {
printf("%d es multiplo de %d", numero, posibleMultiplo);
} else {
printf("%d NO es multiplo de %d", numero, posibleMultiplo);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment