C arrays
Posted: Sat May 06, 2006 1:56 pm
I get confused with arrays when it is taking more than two dimensions and same way with pointers. Most of questions are always about this? I so make mistakes some time. So could you explain how it's translated into instructions? I don't want to disassemble and figure out the whole day. So somebody will you do it for me?
for eg
Something like that.
for eg
Code: Select all
char students[][]={"Hello","World"};
char **p;
p=students;
print(*p++);