首页 > 试题广场 >

给出以下程序的执行结果。 #include void m

[问答题]
给出以下程序的执行结果。
#include <stdio.h>
void main()
{
    char * s[ ]={"one","two","three"}, * p;
    p=s[1];
    printf("%c,%s\n", * (p+1),s[0]);
}

推荐
程序输出为w,one。
发表于 2018-05-07 10:57:25 回复(0)