On Apr 1, 2004, at 5:44 PM, Eric Wilhelm wrote:
# The following was supposedly scribed by # Williams, Ken # on Thursday 01 April 2004 05:30 pm:
printf("Number of elements: %d\n", 1+sv_len(av_ptr));
I think you want: printf("Number of elements: %d\n", 1+av_len(av_ptr));
Argh! Thanks. Darn macros.
Steve, your other problem was that you were using printf("%d") where you should have been using printf("%f") or similar.
-Ken