Hello,

I need array of strings but it's not posible Access to it,

char *p[3]={"EUR","USD","AUD"}

when I Access p[1] it's null but I can do : p[1]="EUR" and shows the correct element. I testes for string [] but its no correct..


I can't get the size ...

Sorry I want only an array of strings and I want get the size for a loop

p[3]={"EUR","USD","AUD"}
while i<size(p) do

how can I do it ?