First,im sorry my bad english.I hope,i can tell my problem.
there is a string: dizi[5]={1,2,3,4,5}
and when program run, i want to change random place of members.i mean;
first time program running:
dizi[5]={2,4,1,3,5}
second time program running:
dizi[5]={5,3,1,2,4}
3th program running:
dizi[5]={4,2,1,3,5}
.
.
.
etc..
always changes random.how i can do it?