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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: bill7
  • Order by date
  1. bill7

    Pointers

    #include&lt;iostream.h&gt;<br><br>void Trial(int *y); <br>void main()<br>&nbsp;{ <br>&nbsp;&nbsp;int x = 36;<br>&nbsp;&nbsp;Trial(&x);&nbsp;&nbsp;// pass the address of x<br>&nbsp;} <br><br>void Trial(int *y)<br>&nbsp;{ <br>&nbsp;&nbsp;&nbsp;cout &lt;&lt; *y &lt;&lt; endl; // print the value of...

Part and Inventory Search

Back
Top