C
clui
I have this array myarray(3) with these values:
myarray(1)="Y"
myarray(2)="Other"
myarray(3)="N"
Now I need to have the array in the following order:
myarray(1)="N"
myarray(2)="Y"
myarray(3)="Other"
What's the code for that? Thanks
myarray(1)="Y"
myarray(2)="Other"
myarray(3)="N"
Now I need to have the array in the following order:
myarray(1)="N"
myarray(2)="Y"
myarray(3)="Other"
What's the code for that? Thanks