编辑代码

#include <stdio.h>
int main () {
    char name='w';
    printf("字符代码:%d \n 字符:%c \n", name,name);
	return 0;
}