Galera, eu estou com um problema para converter uma string em ascii
#include <stdio.h>
char get_str[16];
int cod_str[16];
int converte(char letra){
if (letra == 'a') letra = 97';
if (letra == 'b') letra = ´98';
if (letra == 'c') letra = '99';
if (letra == 'd') letra = '100';
return letra;
}
char conversor(){
int i;
for(i=0;i<16;i++){
cod_str[i] = converte (get_str[i]);
}
}
int main(){
int num;
printf("Convertendo temos:\n");
gets(get_str);
conversor();
printf("\n\n");
printf(" A palavra%s em ASCII é :\n",get_str);
printf(" %s\n\n",cod_str);
scanf("%d", &num);
}
Pergunta
butterfly
Galera, eu estou com um problema para converter uma string em ascii
alguém tem alguma sugestão?
Link para o comentário
Compartilhar em outros sites
1 resposta a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.