<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>string sorting | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/string-sorting/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Thu, 01 Sep 2011 14:17:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>Program to arrange the string in alphabetical order</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/program-arrange-string-alphabetical-order/</link>
					<comments>https://studentprojects.in/software-development/c-tutorials/c/string/program-arrange-string-alphabetical-order/#respond</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Tue, 30 Aug 2011 14:24:39 +0000</pubDate>
				<category><![CDATA[String Programs]]></category>
		<category><![CDATA[c program]]></category>
		<category><![CDATA[sorting]]></category>
		<category><![CDATA[string programs]]></category>
		<category><![CDATA[alphabetical]]></category>
		<category><![CDATA[string sorting]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=1769</guid>

					<description><![CDATA[<p>Here is the program to arrange the string in alphabetical order. #include "stdio.h" #include "conio.h" #include "string.h" void main() { char str[10],temp; int i,j; clrscr(); printf("\nEnter the string : "); scanf("%s",str); for(i=0;i&#60;strlen(str);i++) for(j=0;j&#60;strlen(str);j++) if(str[i]&#60;str[j]) { temp = str[i]; str[i] = str[j]; str[j] = temp; } printf(&#34;Reversed String is : %s&#34;,str); getch(); }</p>
<p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c/string/program-arrange-string-alphabetical-order/">Program to arrange the string in alphabetical order</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Here is the program to arrange the string in alphabetical order.</p>
<pre lang="c" escaped="true" line="1">
  #include "stdio.h"
  #include "conio.h"
  #include "string.h"
  void main()
  {
     char str[10],temp;
     int i,j;
     clrscr();
     printf("\nEnter the string : ");
     scanf("%s",str);
     for(i=0;i&lt;strlen(str);i++)
       for(j=0;j&lt;strlen(str);j++)
	 if(str[i]&lt;str[j])
	 {
	   temp = str[i];
	   str[i] = str[j];
	   str[j] = temp;
	 }
     printf(&quot;Reversed String is : %s&quot;,str);
     getch();
  }
</pre><p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c/string/program-arrange-string-alphabetical-order/">Program to arrange the string in alphabetical order</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/c-tutorials/c/string/program-arrange-string-alphabetical-order/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
