有以下程序
main()
{char s[ ]={ "aeiou"},*ps;
ps=s; printf("%c\n",*ps+4);}程序运行后的输出结果是()。
Aa
Be
Cu
D元素s[4]的地址
相关试题
-
有以下程序 main() {char s[ ]={ aeiou},*ps; ps=s; printf(%c\n,*ps+4);}程序运行后的输出结果是()。
-
有以下程序 #include main() { unsigned char a=8,c; c=a>>3; printf(%d\n,c); } 程序运行后的输出结果是()
-
clude void main() { char str[]=\stop!\,he said; printf(str); } 程序的运行结果是 ( )。
-
有以下程序 #include main() { char a[30],b[30]; scanf(%s,a); gets(b); printf(%s\n %s\n,a,b);
-
有以下程序 #include main() { int x=011; printf(%d\n,++x); } 程序运行后的输出结果是( )。