Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 1, 2019 15:36
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/97a5e9145db0043d0500a085b5585043 to your computer and use it in GitHub Desktop.
Save parzibyte/97a5e9145db0043d0500a085b5585043 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(){
int numero = 2147483647;
printf("El numero, sin modificar es %d\n", numero);
numero = numero + 1; // O numero++
printf("El numero, despues de aumentarle 1 es %d\n", numero);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment