Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 29, 2019 22:57
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/3c95b364c8576dbd397520517cb3e69b to your computer and use it in GitHub Desktop.
Save parzibyte/3c95b364c8576dbd397520517cb3e69b to your computer and use it in GitHub Desktop.
/*
Char a int en C
@author parzibyte.me
*/
#include <stdio.h>
int main(){
char caracter = '2';
int comoEntero = caracter - '0';
printf("El carácter '%c' es %d en entero", caracter, comoEntero);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment