题目内容
以下程序运行时,输出结果中的第一行是,第二行是,第三行是,第四行是。#include int main(){char *str[]={"one","two","three","four"};char **p=str;puts(*p);puts(*(p+1));puts(str[2]);puts(str[2]+1);return 0;}
查看答案
搜索结果不匹配?点我反馈