<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Implementation of Hamming code	</title>
	<atom:link href="https://krazytech.com/projects/implementation-of-hamming-code/feed" rel="self" type="application/rss+xml" />
	<link>https://krazytech.com/projects/implementation-of-hamming-code</link>
	<description>A Technology Base</description>
	<lastBuildDate>Wed, 20 Feb 2019 14:03:23 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>
		By: sahilvaghasiya9687gmailcom		</title>
		<link>https://krazytech.com/projects/implementation-of-hamming-code/comment-page-1#comment-25637</link>

		<dc:creator><![CDATA[sahilvaghasiya9687gmailcom]]></dc:creator>
		<pubDate>Wed, 20 Feb 2019 14:03:23 +0000</pubDate>
		<guid isPermaLink="false">http://sh054.global.temp.domains/~krazyliv/krazytech/?p=863#comment-25637</guid>

					<description><![CDATA[using this formula 2^r&#062;=m+r+1 then create program]]></description>
			<content:encoded><![CDATA[<p>using this formula 2^r&gt;=m+r+1 then create program</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Bandakkanavar		</title>
		<link>https://krazytech.com/projects/implementation-of-hamming-code/comment-page-1#comment-24634</link>

		<dc:creator><![CDATA[Ravi Bandakkanavar]]></dc:creator>
		<pubDate>Fri, 11 Aug 2017 15:59:27 +0000</pubDate>
		<guid isPermaLink="false">http://sh054.global.temp.domains/~krazyliv/krazytech/?p=863#comment-24634</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://krazytech.com/projects/implementation-of-hamming-code/comment-page-1#comment-24631&quot;&gt;KD7&lt;/a&gt;.

Thanks for the code Kedar. Is it tested one?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://krazytech.com/projects/implementation-of-hamming-code/comment-page-1#comment-24631">KD7</a>.</p>
<p>Thanks for the code Kedar. Is it tested one?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: KD7		</title>
		<link>https://krazytech.com/projects/implementation-of-hamming-code/comment-page-1#comment-24631</link>

		<dc:creator><![CDATA[KD7]]></dc:creator>
		<pubDate>Fri, 11 Aug 2017 10:05:12 +0000</pubDate>
		<guid isPermaLink="false">http://sh054.global.temp.domains/~krazyliv/krazytech/?p=863#comment-24631</guid>

					<description><![CDATA[This is correct code for 7bit hamming code please refer this:--------
#include
 
void main() {
    int data[10];
    int dataatrec[10],c,c1,c2,c3,i;
 
    printf(&quot;Enter 4 bits of data one by one\n&quot;);
    scanf(&quot;%d&quot;,&#038;data[0]);
    scanf(&quot;%d&quot;,&#038;data[1]);
    scanf(&quot;%d&quot;,&#038;data[2]);
    scanf(&quot;%d&quot;,&#038;data[4]);
 
    
    data[6]=data[0]^data[2]^data[4];
    data[5]=data[0]^data[1]^data[4];
    data[3]=data[0]^data[1]^data[2];
 
    printf(&quot;\nEncoded data is\n&quot;);
    for(i=0;i&#060;7;i++)
        printf(&#034;%d&#034;,data[i]);
 
    printf(&#034;\n\nEnter received data bits one by one\n&#034;);
    for(i=0;i&#060;7;i++)
        scanf(&#034;%d&#034;,&#038;dataatrec[i]);
 
    c1=dataatrec[6]^dataatrec[4]^dataatrec[2]^dataatrec[0];
    c2=dataatrec[5]^dataatrec[4]^dataatrec[1]^dataatrec[0];
    c3=dataatrec[3]^dataatrec[2]^dataatrec[1]^dataatrec[0];
    c=c3*4+c2*2+c1 ;
 
    if(c==0 &#038;&#038; dataatrec[6]==data[6] &#038;&#038; dataatrec[5]==data[5] &#038;&#038; dataatrec[3]==data[3] ) {
        printf(&#034;\nNo error while transmission of data\n&#034;);
    }
    else {
        printf(&#034;\nError on position %d&#034;,c);
        
        printf(&#034;\nData sent : &#034;);
        for(i=0;i&#060;7;i++)
            printf(&#034;%d&#034;,data[i]);
        
        printf(&#034;\nData received : &#034;);
        for(i=0;i&#060;7;i++)
            printf(&#034;%d&#034;,dataatrec[i]);
        
        printf(&#034;\nCorrect message is\n&#034;);
 
            if(dataatrec[7-c]==0)
            dataatrec[7-c]=1;
        else
            dataatrec[7-c]=0;
        
        for (i=0;i&#060;7;i++) {
            printf(&#034;%d&#034;,data[i]);
        }
    }
}]]></description>
			<content:encoded><![CDATA[<p>This is correct code for 7bit hamming code please refer this:&#8212;&#8212;&#8211;<br />
#include</p>
<p>void main() {<br />
    int data[10];<br />
    int dataatrec[10],c,c1,c2,c3,i;</p>
<p>    printf(&#8220;Enter 4 bits of data one by one\n&#8221;);<br />
    scanf(&#8220;%d&#8221;,&amp;data[0]);<br />
    scanf(&#8220;%d&#8221;,&amp;data[1]);<br />
    scanf(&#8220;%d&#8221;,&amp;data[2]);<br />
    scanf(&#8220;%d&#8221;,&amp;data[4]);</p>
<p>    data[6]=data[0]^data[2]^data[4];<br />
    data[5]=data[0]^data[1]^data[4];<br />
    data[3]=data[0]^data[1]^data[2];</p>
<p>    printf(&#8220;\nEncoded data is\n&#8221;);<br />
    for(i=0;i&lt;7;i++)<br />
        printf(&quot;%d&quot;,data[i]);</p>
<p>    printf(&quot;\n\nEnter received data bits one by one\n&quot;);<br />
    for(i=0;i&lt;7;i++)<br />
        scanf(&quot;%d&quot;,&amp;dataatrec[i]);</p>
<p>    c1=dataatrec[6]^dataatrec[4]^dataatrec[2]^dataatrec[0];<br />
    c2=dataatrec[5]^dataatrec[4]^dataatrec[1]^dataatrec[0];<br />
    c3=dataatrec[3]^dataatrec[2]^dataatrec[1]^dataatrec[0];<br />
    c=c3*4+c2*2+c1 ;</p>
<p>    if(c==0 &amp;&amp; dataatrec[6]==data[6] &amp;&amp; dataatrec[5]==data[5] &amp;&amp; dataatrec[3]==data[3] ) {<br />
        printf(&quot;\nNo error while transmission of data\n&quot;);<br />
    }<br />
    else {<br />
        printf(&quot;\nError on position %d&quot;,c);</p>
<p>        printf(&quot;\nData sent : &quot;);<br />
        for(i=0;i&lt;7;i++)<br />
            printf(&quot;%d&quot;,data[i]);</p>
<p>        printf(&quot;\nData received : &quot;);<br />
        for(i=0;i&lt;7;i++)<br />
            printf(&quot;%d&quot;,dataatrec[i]);</p>
<p>        printf(&quot;\nCorrect message is\n&quot;);</p>
<p>            if(dataatrec[7-c]==0)<br />
            dataatrec[7-c]=1;<br />
        else<br />
            dataatrec[7-c]=0;</p>
<p>        for (i=0;i&lt;7;i++) {<br />
            printf(&quot;%d&quot;,data[i]);<br />
        }<br />
    }<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dhrisya krishna		</title>
		<link>https://krazytech.com/projects/implementation-of-hamming-code/comment-page-1#comment-19816</link>

		<dc:creator><![CDATA[Dhrisya krishna]]></dc:creator>
		<pubDate>Wed, 17 Aug 2016 10:35:12 +0000</pubDate>
		<guid isPermaLink="false">http://sh054.global.temp.domains/~krazyliv/krazytech/?p=863#comment-19816</guid>

					<description><![CDATA[How this error can be implemented as application level in project]]></description>
			<content:encoded><![CDATA[<p>How this error can be implemented as application level in project</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
