Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

One other question

Status
Not open for further replies.

CindyCSCK

Programmer
Joined
Jan 15, 2002
Messages
4
Location
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 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
 
You can simply write:

arr [5]a;

main()
{
hitit(a[3]);
}

i think this is help you understand the concept.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top