Hi Guys
I have perl code that looks like this:
sub test_score { $SCORE = @_; for($i=0;$s<=100;$i++) { ... ... ... ... my @SCORES = split(/ /,$scores); push @{${$SCORE}[$sentence]},[EMAIL PROTECTED]; } }
my @SCORE =(); &test_score([EMAIL PROTECTED]);
$scores is a string separated by whitespace, @SCORE is an array. How would I access this array in C? I am not really clear on what that last 'push' statement is doing?
Thanks a lot !! Nitin