Posts: 211
Threads: 11
Joined: Sep 2012
Reputation:
0
All cells of the name [24] = {0, ...} does not have the number 0.
name [24], will have a null value
Posts: 77
Threads: 27
Joined: Apr 2011
Reputation:
0
English please
Edit
Okay how can is this help me?
Posts: 211
Threads: 11
Joined: Sep 2012
Reputation:
0
Suppose you want to turn all the cells name [24]; 0.
You could do the following:
name [0] = 0;
name [1] = 0;
name [2] = 0;
name [3] = 0;
continue ...
name [23] = 0;
This way would take longer and would be very large.
One way would be to make more optimized as follows:
name [24] = {0, ...}; What does the same as the previous example