如何在程序中打印Ansii c扩展代码?

时间:2015-11-30 12:32:25

标签: c

enter image description here

如何输入或输出突出显示的代码?

我也使用此代码。

#include <stdio.h>
 int main()
  {
    int e;
    char ch;

    printf("\n Enter a character : ");
    scanf("%c",&ch);
    e=ch;
    e=e-6;
    ch=e;
    printf("\n This is  % c before the character W :",ch);
    getch();
    return 0;
  }

此代码将为输入 W

打印 Q

输入

Enter a character : W

输出

This is  Q before the character W

1 个答案:

答案 0 :(得分:2)

Alt-列中的数字表示您必须阅读两个字符:如果第一个为零,那么您必须阅读另一个以获取密钥。