I have the following line which sends the arguments args[] and length to a method called largest.
args[]
length
largest
printf(\"Largest is: %
You probably just want the pointer of the array, so pass in largest(args, length) instead.
largest(args, length)