字符数据的输出

来源:互联网 发布:手机万能遥控器软件 编辑:程序博客网 时间:2024/05/20 18:44
#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) {char fuhao='a';int shuzi=97; printf("符号是%c,%d\n",fuhao,fuhao);printf("数字是%c,%d",shuzi,shuzi);return 0;}

原创粉丝点击