我正在尝试打印“\ t”的ASCII值,即转义序列。 但我的程序只打印ASCII值“\”,即ASCII值为92。 有没有办法打印2个字符的ASCII值? 帮助将非常感激。我已在下面提供了我的代码。
#include<stdio.h>
main()
{
char b=0;
printf("Enter any character to print it's ASCII value : ");
scanf("%c",&b);
printf("The ASCII value of '%c' is %d",b,b);
return 0;
}