Sorry! Posting Assignment is allowed only for commercial accounts.
function randNum(){ return Math.floor(Math.random());}randNum();
int main(){ int ary[2][2][3] = { {{1,2,3},{4,5,6}}, {{7,8,9},{10,11,12}} }; int *p; p = &ary; printf("%d %d",*p, *p+11); return 0;}