“como converter int em char em c#” Respostas de código

int para char em c

c = i +'0';
Muddy Mockingbird

C int para char

int i = 7;
char str[256];

itoa(i,str,10); //Base 10

char c = str[0]; // c="7"
GitanDesBois

lançando um int a um char em c

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");
Calm Cowfish

Respostas semelhantes a “como converter int em char em c#”

Perguntas semelhantes a “como converter int em char em c#”

Mais respostas relacionadas para “como converter int em char em c#” em C#

Procure respostas de código populares por idioma

Procurar outros idiomas de código