<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Muhammad28m</title>
    <description>The latest articles on DEV Community by Muhammad28m (@muhammad28m).</description>
    <link>https://dev.to/muhammad28m</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1324646%2F06a7fc3e-ef98-4236-8745-b1cf270f2059.png</url>
      <title>DEV Community: Muhammad28m</title>
      <link>https://dev.to/muhammad28m</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/muhammad28m"/>
    <language>en</language>
    <item>
      <title>New post</title>
      <dc:creator>Muhammad28m</dc:creator>
      <pubDate>Wed, 06 Mar 2024 12:46:54 +0000</pubDate>
      <link>https://dev.to/muhammad28m/new-post-j8o</link>
      <guid>https://dev.to/muhammad28m/new-post-j8o</guid>
      <description>&lt;p&gt;Hello everyone, today we have covered the topic "Pointer" in c++ programming language.&lt;br&gt;
This is how the codes are written in this thread&lt;br&gt;
`&lt;/p&gt;

&lt;h1&gt;
  
  
  include 
&lt;/h1&gt;

&lt;p&gt;using namespace std;&lt;/p&gt;

&lt;p&gt;int main()&lt;br&gt;
{&lt;br&gt;
int a = 10;&lt;br&gt;
    int *ptr = &amp;amp;a;&lt;br&gt;
    *ptr = 30;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cout &amp;lt;&amp;lt; a &amp;lt;&amp;lt; endl;
cout &amp;lt;&amp;lt; &amp;amp;a &amp;lt;&amp;lt; endl;
cout &amp;lt;&amp;lt; a &amp;lt;&amp;lt; endl &amp;lt;&amp;lt; *ptr &amp;lt;&amp;lt; endl;
cout &amp;lt;&amp;lt; a &amp;lt;&amp;lt; endl &amp;lt;&amp;lt; ptr &amp;lt;&amp;lt; endl;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;return 0;&lt;br&gt;
}&lt;br&gt;
`&lt;br&gt;
A pointer is a variable that stores the address of another bit variable in memory. Pointer returns that input variable in its own language&lt;/p&gt;

</description>
      <category>cpp</category>
    </item>
  </channel>
</rss>
