若有定义char *s=”\\”Name\\Address\n”,则指针s所指字符串长度为______ 。
A. 19
B. 15
C. 18
D. 说明不合法
下面哪个是合法的结构体的定义和赋值语句()?
A. struct ord {int x;int y;int z;} struct ord a={1,2,3};
B. struct ord {int x;int y;int z;} struct ord a;a={1,2,3};
C. struct ord {int x;int y;int z;} a={1,2,3};
D. struct {int x;int y;int z;} a;a={1,2,3};
char ch=’B’; printf(“%c %d\n”,ch,ch); 已知字符A的ACSII码值为65,输出结果是: 。(%c %d之间有一个空格)
main(){ char m; m='B'+32; printf("%c\n",m); }//程序运行后的输出结果是: ______。