int x = character - '0';
Use ASCII chart.
int i=65;
char ch;
ch= (char)i;
printf("Expected value of ch: A. This value is found by using a ASCII chart");
int i = 7;
char str[256];
itoa(i,str,10); //Base 10
char c = str[0]; // c="7"
c = i +'0';
Code Example |
---|
C :: plt legend top right outside |
C :: #define arduino |
C :: hello word in c |
C :: replacing a character in string in C |
C :: char to int in c |
C :: c programming language |
C :: c header file example |
C :: bootstrap 4 forms |
C :: malloc contiguous 2d array |
C :: c find last element in array |
C :: memcpy in c |
C :: do...while loop c |
C :: print to console in c |
C :: mongodb read |
C :: transfer function exponent matlab |
C :: imprimir matriz |
C :: powershell search big files |
C :: definir função em c |
C :: sqrt function in c |
C :: scan c |
C :: hash function in c |
C :: c arrays and pointers |
C :: How to send an array through a pipe |
C :: android studio sdkmanager always accept |
C :: how to belu-roll peoples in c |
C :: c to assembly online compiler |
C :: C access global variable same name |
C :: remove every appearance of char without malloc in c |
C :: c programming print pattern pyramid |
C :: (avar == 1) ? (bvar == 2 ? result = 3 : (result = 5);) : (result = 0); |