<?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 for Student Projects	</title>
	<atom:link href="https://studentprojects.in/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sat, 10 Dec 2022 04:29:47 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		Comment on Verilog HDL Program for Parallel In – Parallel Out Shift Register by Mac Corbin		</title>
		<link>https://studentprojects.in/electronics/verilog-hdl/verilog-hdl-program-for-parallel-in-parallel-out-shift-register/comment-page-1/#comment-142106</link>

		<dc:creator><![CDATA[Mac Corbin]]></dc:creator>
		<pubDate>Sun, 22 Nov 2015 10:41:26 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=3240#comment-142106</guid>

					<description><![CDATA[I don&#039;t even know the way I stopped up right here, however I believed this submit was good. I do not realize who you&#039;re however definitely you are going to a well-known blogger for those who aren&#039;t already. Cheers!]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t even know the way I stopped up right here, however I believed this submit was good. I do not realize who you&#8217;re however definitely you are going to a well-known blogger for those who aren&#8217;t already. Cheers!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Robotic car using 8951 Microcontroller by kila		</title>
		<link>https://studentprojects.in/electronics/microcontrollers/robotic-car-using-8951-microcontroller/comment-page-8/#comment-141966</link>

		<dc:creator><![CDATA[kila]]></dc:creator>
		<pubDate>Sat, 21 Nov 2015 08:22:45 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=177#comment-141966</guid>

					<description><![CDATA[hi sir.. can u please send me the microC coding and schematic circuit for this project.. i really need this for reference.... thanks.. aqgempak_spcool@yahoo.com]]></description>
			<content:encoded><![CDATA[<p>hi sir.. can u please send me the microC coding and schematic circuit for this project.. i really need this for reference&#8230;. thanks.. <a href="mailto:aqgempak_spcool@yahoo.com">aqgempak_spcool@yahoo.com</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on C program for LRU page replacement algorithm by Anonymous		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/c-program-for-lru-page-replacement-algorithm/comment-page-1/#comment-141732</link>

		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Thu, 19 Nov 2015 04:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=775#comment-141732</guid>

					<description><![CDATA[Bruh you ever heard of indenting]]></description>
			<content:encoded><![CDATA[<p>Bruh you ever heard of indenting</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Insertion sort in C program by asadfdf		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/sorting/program-to-sort-the-numbers-using-insertion-sort/comment-page-2/#comment-141328</link>

		<dc:creator><![CDATA[asadfdf]]></dc:creator>
		<pubDate>Mon, 16 Nov 2015 07:48:14 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=351#comment-141328</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://studentprojects.in/software-development/c-tutorials/c/sorting/program-to-sort-the-numbers-using-insertion-sort/comment-page-2/#comment-9541&quot;&gt;potpot&lt;/a&gt;.

Source code of simple merge sort implementation using array in ascending order in c programming language

#include
#define MAX 50

void mergeSort(int arr[],int low,int mid,int high);
void partition(int arr[],int low,int high);

int main(){
   
    int merge[MAX],i,n;

    printf(&quot;Enter the total number of elements: &quot;);
    scanf(&quot;%d&quot;,&#038;n);

    printf(&quot;Enter the elements which to be sort: &quot;);
    for(i=0;i&#060;n;i++){
         scanf(&#034;%d&#034;,&#038;merge[i]);
    }

    partition(merge,0,n-1);

    printf(&#034;After merge sorting elements are: &#034;);
    for(i=0;i&#060;n;i++){
         printf(&#034;%d &#034;,merge[i]);
    }

   return 0;
}

void partition(int arr[],int low,int high){

    int mid;

    if(low&#060;high){
         mid=(low+high)/2;
         partition(arr,low,mid);
         partition(arr,mid+1,high);
         mergeSort(arr,low,mid,high);
    }
}

void mergeSort(int arr[],int low,int mid,int high){

    int i,m,k,l,temp[MAX];

    l=low;
    i=low;
    m=mid+1;

    while((l&#060;=mid)&#038;&#038;(m&#060;=high)){

         if(arr[l]mid){
         for(k=m;k&#060;=high;k++){
             temp[i]=arr[k];
             i++;
         }
    }
    else{
         for(k=l;k&#060;=mid;k++){
             temp[i]=arr[k];
             i++;
         }
    }
   
    for(k=low;k&#060;=high;k++){
         arr[k]=temp[k];
    }
}


Sample output:

Enter the total number of elements: 5
Enter the elements which to be sort: 2 5 0 9 1
After merge sorting elements are: 0 1 2 5 9]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://studentprojects.in/software-development/c-tutorials/c/sorting/program-to-sort-the-numbers-using-insertion-sort/comment-page-2/#comment-9541">potpot</a>.</p>
<p>Source code of simple merge sort implementation using array in ascending order in c programming language</p>
<p>#include<br />
#define MAX 50</p>
<p>void mergeSort(int arr[],int low,int mid,int high);<br />
void partition(int arr[],int low,int high);</p>
<p>int main(){</p>
<p>    int merge[MAX],i,n;</p>
<p>    printf(&#8220;Enter the total number of elements: &#8220;);<br />
    scanf(&#8220;%d&#8221;,&amp;n);</p>
<p>    printf(&#8220;Enter the elements which to be sort: &#8220;);<br />
    for(i=0;i&lt;n;i++){<br />
         scanf(&quot;%d&quot;,&amp;merge[i]);<br />
    }</p>
<p>    partition(merge,0,n-1);</p>
<p>    printf(&quot;After merge sorting elements are: &quot;);<br />
    for(i=0;i&lt;n;i++){<br />
         printf(&quot;%d &quot;,merge[i]);<br />
    }</p>
<p>   return 0;<br />
}</p>
<p>void partition(int arr[],int low,int high){</p>
<p>    int mid;</p>
<p>    if(low&lt;high){<br />
         mid=(low+high)/2;<br />
         partition(arr,low,mid);<br />
         partition(arr,mid+1,high);<br />
         mergeSort(arr,low,mid,high);<br />
    }<br />
}</p>
<p>void mergeSort(int arr[],int low,int mid,int high){</p>
<p>    int i,m,k,l,temp[MAX];</p>
<p>    l=low;<br />
    i=low;<br />
    m=mid+1;</p>
<p>    while((l&lt;=mid)&amp;&amp;(m&lt;=high)){</p>
<p>         if(arr[l]mid){<br />
         for(k=m;k&lt;=high;k++){<br />
             temp[i]=arr[k];<br />
             i++;<br />
         }<br />
    }<br />
    else{<br />
         for(k=l;k&lt;=mid;k++){<br />
             temp[i]=arr[k];<br />
             i++;<br />
         }<br />
    }</p>
<p>    for(k=low;k&lt;=high;k++){<br />
         arr[k]=temp[k];<br />
    }<br />
}</p>
<p>Sample output:</p>
<p>Enter the total number of elements: 5<br />
Enter the elements which to be sort: 2 5 0 9 1<br />
After merge sorting elements are: 0 1 2 5 9</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on C Program to implement the Cohen-Sutherland line-clipping algorithm. by ksh29		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/graphics/c-program-to-implement-the-cohen-sutherland-line-clipping-algorithm/comment-page-1/#comment-141240</link>

		<dc:creator><![CDATA[ksh29]]></dc:creator>
		<pubDate>Sun, 15 Nov 2015 16:27:03 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=832#comment-141240</guid>

					<description><![CDATA[not true for all cases.you missed certain  cases.]]></description>
			<content:encoded><![CDATA[<p>not true for all cases.you missed certain  cases.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Java program to generate Harmonic Series 1 + 1/2 + 1/3 + 1/4 + 1/5 by kakarot		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-generate-harmonic-series-1-12-13-14-15/comment-page-1/#comment-140987</link>

		<dc:creator><![CDATA[kakarot]]></dc:creator>
		<pubDate>Fri, 13 Nov 2015 17:21:56 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1347#comment-140987</guid>

					<description><![CDATA[How to print this series :- 7.7+77.77+777.777+7777.7777+77777.77777+777777.777777+7777777.7777777 pls do reply soon!!]]></description>
			<content:encoded><![CDATA[<p>How to print this series :- 7.7+77.77+777.777+7777.7777+77777.77777+777777.777777+7777777.7777777 pls do reply soon!!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on To reverse the given string by Ranjith		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-reverse-the-given-string/comment-page-1/#comment-140986</link>

		<dc:creator><![CDATA[Ranjith]]></dc:creator>
		<pubDate>Fri, 13 Nov 2015 17:05:55 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=409#comment-140986</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://studentprojects.in/software-development/c-tutorials/c/string/to-reverse-the-given-string/comment-page-1/#comment-140763&quot;&gt;pranav&lt;/a&gt;.

Thank you Pranav.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://studentprojects.in/software-development/c-tutorials/c/string/to-reverse-the-given-string/comment-page-1/#comment-140763">pranav</a>.</p>
<p>Thank you Pranav.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Doctor&#8217;s Diary using JSP Technology by manohar		</title>
		<link>https://studentprojects.in/software-development/software-projects/software/doctors-diary-using-jsp-technology/comment-page-1/#comment-140801</link>

		<dc:creator><![CDATA[manohar]]></dc:creator>
		<pubDate>Thu, 12 Nov 2015 04:57:12 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=209#comment-140801</guid>

					<description><![CDATA[please share the source code to this mail id ...]]></description>
			<content:encoded><![CDATA[<p>please share the source code to this mail id &#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on To reverse the given string by pranav		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-reverse-the-given-string/comment-page-1/#comment-140763</link>

		<dc:creator><![CDATA[pranav]]></dc:creator>
		<pubDate>Wed, 11 Nov 2015 17:34:50 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=409#comment-140763</guid>

					<description><![CDATA[I found electro friend  very helpful for my studies.thank u so much friendz]]></description>
			<content:encoded><![CDATA[<p>I found electro friend  very helpful for my studies.thank u so much friendz</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Java applet program for interest rate calculation by muzamil		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/applet/java-applet-program-for-interest-rate-calculation/comment-page-1/#comment-140642</link>

		<dc:creator><![CDATA[muzamil]]></dc:creator>
		<pubDate>Tue, 10 Nov 2015 18:40:01 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=881#comment-140642</guid>

					<description><![CDATA[it requiring  main class :( plzz tell what i do how i create main class]]></description>
			<content:encoded><![CDATA[<p>it requiring  main class 🙁 plzz tell what i do how i create main class</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
