<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title> C++ Functions Part II - Programming Help, OS System Help, Articles, Videos,  Books-Web Dot Dev</title>
        <description>&lt;p&gt;&lt;strong&gt;Arguments passed by value and by reference.&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
 Until now, in all the functions we have seen, the arguments passed to the functions have been passed by value. This means that when calling a function with parameters, what we have passed to the function were copies of their values but never the variables themselves. ...</description>
        <link>http://www.webdotdev.com/nvd</link>
        <lastBuildDate>Sun, 14 Mar 2010 18:35:15 +0100</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <image>
            <url></url>
            <title></title>
            <link></link>
            <description>&lt;p&gt;&lt;strong&gt;Arguments passed by value and by reference.&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
 Until now, in all the functions we have seen, the arguments passed to the functions have been passed by value. This means that when calling a function with parameters, what we have passed to the function were copies of their values but never the variables themselves. For example, suppose that we called our first function addition using the following code:&lt;/p&gt;
&lt;blockquote&gt;
&lt;blockquote&gt;&lt;font color=&quot;#ff0000&quot;&gt;int x=5, y=3, z;&lt;br /&gt;
 z = addition ( x , y );&lt;/font&gt;&lt;br /&gt;
&lt;/blockquote&gt;&lt;/blockquote&gt;
&lt;p&gt;What we did in this case was to call to function addition passing the values of x and y, i.e. 5 and 3 respectively, but not the variables x and y themselves. &lt;br /&gt;
&lt;/p&gt;</description>
        </image>
    </channel>
</rss>
