C语言,字符串数组的输出;

#include "stdio.h"
main()
{
char ch[3][12]={"aa","bb","cc"};
printf("%s\n",&ch[0]);
printf("%s\n",&ch[1]);
printf("%s\n",&ch[2]);
getch();
}
这道题这样对吗?

第1个回答  2011-08-06
给个链接 你
你自己看哈~
http://zhidao.baidu.com/question/58792099.html

我也从中学到了 &的用法 哈哈本回答被提问者采纳
相似回答