将char类型指定给变量并输出为整数

#include<stdio.h>

int main (void)
{
    char c, d;
    c = 'd';
    d = c;
    printf (d = %c\n, d);
    return 0;
}

相关文章

for遍历数组
。。。
声明一个计数循环
咕咕咕
#include <stdio.h> int main (void) { printf (&quo...