标签:span 十六进制 指针 style ret 表示 include 根据 oid
1 #include<stdio.h> 2 int main(void) 3 { 4 int a=1; 5 float b=5.0; 6 char str[100]= ""; 7 scanf("%c %c %c",&a,&b,str); 8 /*分别演示 整数*/ 9 printf("int is:%d\n",a); 10 /*分别演示 浮点数*/ 11 printf("float is:%f\n",b); 12 /*分别演示 字符串*/ 13 printf("char is:%s\n",str); 14 15 return 0; 16 }
标签:span 十六进制 指针 style ret 表示 include 根据 oid
原文地址:http://www.cnblogs.com/danielStudy/p/7052927.html