如何将整数转换为C中的字符?

问题描述 投票:3回答:5

例如,如果整数为97,则字符为'a',或98为'b'。

c integer character
5个回答
11
投票

在C中,intcharlong等都是整数。

它们通常具有不同的存储器大小,因此在INT_MININT_MAX中具有不同的范围。 charchar数组通常用于存储字符和字符串。整数存储在许多类型中:int是最受欢迎的速度,大小和范围的平衡。

ASCII是迄今为止最流行的字符编码,但其他编码存在。 'A'的ASCII码为65,'a'为97,'\ n'为10等.ASCII数据通常存储在char变量中。如果C环境使用ASCII编码,则以下都将相同的值存储到整数变量中。

int i1 = 'a';
int i2 = 97;
char c1 = 'a';
char c2 = 97;

要将int转换为char,请简单指定:

int i3 = 'b';
int i4 = i3;
char c3;
char c4;
c3 = i3;
// To avoid a potential compiler warning, use a cast `char`.
c4 = (char) i4; 

出现此警告是因为int通常比char具有更大的范围,因此可能会发生一些信息丢失。通过使用演员(char),明确指示潜在的信息丢失。

要打印整数的值:

printf("<%c>\n", c3); // prints <b>

// Printing a `char` as an integer is less common but do-able
printf("<%d>\n", c3); // prints <98>

// Printing an `int` as a character is less common but do-able.
// The value is converted to an `unsigned char` and then printed.
printf("<%c>\n", i3); // prints <b>

printf("<%d>\n", i3); // prints <98>

关于打印的其他问题,例如在打印%hhu时使用unsigned char或者铸造,但是留待以后使用。 printf()有很多。


1
投票
char c1 = (char)97;  //c1 = 'a'

int i = 98;
char c2 = (char)i;  //c2 = 'b'

1
投票

将整数转换为char将执行您想要的操作。

char theChar=' ';
int theInt = 97;
theChar=(char) theInt;

cout<<theChar<<endl;

除了解释它们的方式之外,'a'和97之间没有区别。


0
投票
void main ()
 {
    int temp,integer,count=0,i,cnd=0;
    char ascii[10]={0};
    printf("enter a number");
    scanf("%d",&integer);
     if(integer>>31)
     {
     /*CONVERTING 2's complement value to normal value*/    
     integer=~integer+1;    
     for(temp=integer;temp!=0;temp/=10,count++);    
     ascii[0]=0x2D;
     count++;
     cnd=1;
     }
     else
     for(temp=integer;temp!=0;temp/=10,count++);    
     for(i=count-1,temp=integer;i>=cnd;i--)
     {

        ascii[i]=(temp%10)+0x30;
        temp/=10;
     }
    printf("\n count =%d ascii=%s ",count,ascii);

 }

0
投票

Program Converts ASCII to Alphabet

#include<stdio.h>

void main ()
{

  int num;
  printf ("=====This Program Converts ASCII to Alphabet!=====\n");
  printf ("Enter ASCII: ");
  scanf ("%d", &num);
  printf("%d is ASCII value of '%c'", num, (char)num );
}

Program Converts Alphabet to ASCII code

#include<stdio.h>

void main ()
{

  char alphabet;
  printf ("=====This Program Converts Alphabet to ASCII code!=====\n");
  printf ("Enter Alphabet: ");
  scanf ("%c", &alphabet);
  printf("ASCII value of '%c' is %d", alphabet, (char)alphabet );
}
© www.soinside.com 2019 - 2024. All rights reserved.