In android, when debugging my program I can see the vector and its contents:
Ihavetopassthisvectorfromandroid(java)toC++andI'musingNDK.
publicnativevoidtesteVetor(double[]vetorDados);testeVetor(vetorDados);
testVetorisafunctioninC++:
CurrentlywhenIdebug,whenitarrivesinC++,itshowsthevectorthisway:
My question is: when I have debugging, how can I display the vector in C ++ just as it is displayed in Java?