<?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: To copy the contents of one string to another string using pointer	</title>
	<atom:link href="https://studentprojects.in/software-development/c-tutorials/c/string/to-copy-the-contents-of-one-string-to-another-string-using-pointer/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-copy-the-contents-of-one-string-to-another-string-using-pointer/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Tue, 08 Sep 2015 09:04:50 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: kshitij panchal		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-copy-the-contents-of-one-string-to-another-string-using-pointer/comment-page-1/#comment-129398</link>

		<dc:creator><![CDATA[kshitij panchal]]></dc:creator>
		<pubDate>Tue, 08 Sep 2015 09:04:50 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=405#comment-129398</guid>

					<description><![CDATA[thanks for you in help as c programing]]></description>
			<content:encoded><![CDATA[<p>thanks for you in help as c programing</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: susan		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-copy-the-contents-of-one-string-to-another-string-using-pointer/comment-page-1/#comment-10187</link>

		<dc:creator><![CDATA[susan]]></dc:creator>
		<pubDate>Wed, 25 Sep 2013 13:50:56 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=405#comment-10187</guid>

					<description><![CDATA[tks a lot..try 2 include more programs as i m a cs engineering  student and my knowledge about c programming is nil!!!! :-) :-)]]></description>
			<content:encoded><![CDATA[<p>tks a lot..try 2 include more programs as i m a cs engineering  student and my knowledge about c programming is nil!!!! 🙂 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: susan		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-copy-the-contents-of-one-string-to-another-string-using-pointer/comment-page-1/#comment-10185</link>

		<dc:creator><![CDATA[susan]]></dc:creator>
		<pubDate>Wed, 25 Sep 2013 13:49:59 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=405#comment-10185</guid>

					<description><![CDATA[thanks...try 2 include more programs as i m a cs engineering  student and my knowledge about c programming is nil!!!! :-) :-)]]></description>
			<content:encoded><![CDATA[<p>thanks&#8230;try 2 include more programs as i m a cs engineering  student and my knowledge about c programming is nil!!!! 🙂 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: susan		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-copy-the-contents-of-one-string-to-another-string-using-pointer/comment-page-1/#comment-10186</link>

		<dc:creator><![CDATA[susan]]></dc:creator>
		<pubDate>Wed, 25 Sep 2013 13:49:59 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=405#comment-10186</guid>

					<description><![CDATA[thanks...try 2 include more programs as i m a cs engineering  student and my knowledge about c programming is nil!!!! :-) :-)]]></description>
			<content:encoded><![CDATA[<p>thanks&#8230;try 2 include more programs as i m a cs engineering  student and my knowledge about c programming is nil!!!! 🙂 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Prabhakar		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-copy-the-contents-of-one-string-to-another-string-using-pointer/comment-page-1/#comment-9313</link>

		<dc:creator><![CDATA[Prabhakar]]></dc:creator>
		<pubDate>Tue, 11 Dec 2012 05:58:21 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=405#comment-9313</guid>

					<description><![CDATA[It helpd me a lot]]></description>
			<content:encoded><![CDATA[<p>It helpd me a lot</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mayuresh Sawant		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-copy-the-contents-of-one-string-to-another-string-using-pointer/comment-page-1/#comment-3082</link>

		<dc:creator><![CDATA[Mayuresh Sawant]]></dc:creator>
		<pubDate>Fri, 30 Jul 2010 10:33:30 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=405#comment-3082</guid>

					<description><![CDATA[not working....u need to assign valid address to str2. check the updated code

#include
#include
void stcpy(char *str1, char *str2);
void main()
{
char ch; //----&#062; added

char *str1, *str2=&amp;ch; //---&#062;assigned
clrscr();
printf(“\n\n\t ENTER A STRING…: “);
gets(str1);
stcpy(str1,str2);
printf(“\n\t THE COPIED STRING IS…: “);
puts(str2);
getch();
}
void stcpy(char *str1, char *str2)
{
int i, len = 0;
while(*(str1+len)!=’′)
len++;
for(i=0;i&#060;len;i++)
*(str2+i) = *(str1+i);
*(str2+i) = ‘′;
}]]></description>
			<content:encoded><![CDATA[<p>not working&#8230;.u need to assign valid address to str2. check the updated code</p>
<p>#include<br />
#include<br />
void stcpy(char *str1, char *str2);<br />
void main()<br />
{<br />
char ch; //&#8212;-&gt; added</p>
<p>char *str1, *str2=&ch; //&#8212;&gt;assigned<br />
clrscr();<br />
printf(“\n\n\t ENTER A STRING…: “);<br />
gets(str1);<br />
stcpy(str1,str2);<br />
printf(“\n\t THE COPIED STRING IS…: “);<br />
puts(str2);<br />
getch();<br />
}<br />
void stcpy(char *str1, char *str2)<br />
{<br />
int i, len = 0;<br />
while(*(str1+len)!=’′)<br />
len++;<br />
for(i=0;i&lt;len;i++)<br />
*(str2+i) = *(str1+i);<br />
*(str2+i) = ‘′;<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Parveez		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-copy-the-contents-of-one-string-to-another-string-using-pointer/comment-page-1/#comment-3077</link>

		<dc:creator><![CDATA[Parveez]]></dc:creator>
		<pubDate>Thu, 29 Jul 2010 17:06:56 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=405#comment-3077</guid>

					<description><![CDATA[wow nice program.......]]></description>
			<content:encoded><![CDATA[<p>wow nice program&#8230;&#8230;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: saurabhchopra		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-copy-the-contents-of-one-string-to-another-string-using-pointer/comment-page-1/#comment-3016</link>

		<dc:creator><![CDATA[saurabhchopra]]></dc:creator>
		<pubDate>Fri, 16 Jul 2010 10:45:59 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=405#comment-3016</guid>

					<description><![CDATA[a beautiful program.]]></description>
			<content:encoded><![CDATA[<p>a beautiful program.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
