题目内容
以下程序的运行结果是________。#include main(){char *pp[2][3]={"abc","defgh","ijkl","mnopqr","stuvw","xyz"};printf("%c",***(pp+1));printf("%c",**pp[0]);printf("%c",(*(*(pp+1)+1))[4]);printf("%c",*(pp[1][2]+2));printf(",%s\n",**(pp+1));}
查看答案
搜索结果不匹配?点我反馈