Hi jlopezs104,
Here is a quick example :
include \masm32\include\masm32rt.inc
NUMB_OF_MEMBERS equ 10
.data
array dd 80,95,100,70,60,72,30,10,20,5
msg db 'Member %d = %d',13,10,0
.code
start:
call main
invoke ExitProcess,0
main PROC uses esi ebx
mov esi,OFFSET array
invoke nrQsortA,esi,NUMB_OF_MEMBERS
mov ebx,1
@@:
invoke crt_printf,ADDR msg,ebx,DWORD PTR [esi]
add ebx,1
add esi,4
cmp ebx,NUMB_OF_MEMBERS+1
jnz @b
ret
main ENDP
END start