@interface Foo {
Bar *bar[12][8][2];
}
And I am wondering what that means and what it is actually doing behind the scenes?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
bar it is an array of 12 elements. Each element is an array of 8 elements, and each element is an array of 2 pointers to “Bar” objects.