+ 2
Multi Diamentional Arrays
What is the special use of them than the single diamentional arrays?
3 Respostas
+ 7
Suppose you want to store marks of 1 to 12 class in of 60 students in each class and 6 subject, then most easy way is
int c,r,s;
c=12;//for no.of class
r=60//for rollno.
s=6//for subject
Int Marks [c][r][s];
+ 6
Welcome bro
+ 1
Got it...thnx