Jan 18, 2002 #1 CindyCSCK Programmer Jan 15, 2002 4 DE I need to write a statement that calls a function named hitit, passing to it the 4th member of an array names value.
I need to write a statement that calls a function named hitit, passing to it the 4th member of an array names value.
Jan 18, 2002 #2 Zyrenthian Programmer Mar 30, 2001 1,440 US i dont know if i completely follow but if you want the fourth element in the array it would be array_name[3] as the arguemnt Matt Upvote 0 Downvote
i dont know if i completely follow but if you want the fourth element in the array it would be array_name[3] as the arguemnt Matt
Jan 18, 2002 #3 Anandjjw Programmer Dec 27, 2001 2 IN You can simply write: arr [5]a; main() { hitit(a[3]); } i think this is help you understand the concept. Upvote 0 Downvote
You can simply write: arr [5]a; main() { hitit(a[3]); } i think this is help you understand the concept.