<?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 count the number of vowels in a given string</title>
	<atom:link href="http://electrofriends.com/source-codes/software-programs/c/string-programs/to-count-the-number-of-vowels-in-a-given-string/feed/" rel="self" type="application/rss+xml" />
	<link>http://electrofriends.com/source-codes/software-programs/c/string-programs/to-count-the-number-of-vowels-in-a-given-string/</link>
	<description>...bringing innovative minds together</description>
	<lastBuildDate>Tue, 22 May 2012 18:24:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Venkatesh</title>
		<link>http://electrofriends.com/source-codes/software-programs/c/string-programs/to-count-the-number-of-vowels-in-a-given-string/comment-page-1/#comment-5759</link>
		<dc:creator>Venkatesh</dc:creator>
		<pubDate>Fri, 16 Sep 2011 03:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://electrofriends.com/?p=379#comment-5759</guid>
		<description>Thanks a lot please help me to find maximum and minimum values in a list using pointer please please</description>
		<content:encoded><![CDATA[<p>Thanks a lot please help me to find maximum and minimum values in a list using pointer please please</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nishant</title>
		<link>http://electrofriends.com/source-codes/software-programs/c/string-programs/to-count-the-number-of-vowels-in-a-given-string/comment-page-1/#comment-5315</link>
		<dc:creator>nishant</dc:creator>
		<pubDate>Mon, 15 Aug 2011 07:33:56 +0000</pubDate>
		<guid isPermaLink="false">http://electrofriends.com/?p=379#comment-5315</guid>
		<description>jada ho gaya beee....sory bee..</description>
		<content:encoded><![CDATA[<p>jada ho gaya beee&#8230;.sory bee..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: inday</title>
		<link>http://electrofriends.com/source-codes/software-programs/c/string-programs/to-count-the-number-of-vowels-in-a-given-string/comment-page-1/#comment-5010</link>
		<dc:creator>inday</dc:creator>
		<pubDate>Thu, 30 Jun 2011 03:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://electrofriends.com/?p=379#comment-5010</guid>
		<description>i dosnt disply the number of vowels. can any1 help me??</description>
		<content:encoded><![CDATA[<p>i dosnt disply the number of vowels. can any1 help me??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anand Gopal makwa Munger</title>
		<link>http://electrofriends.com/source-codes/software-programs/c/string-programs/to-count-the-number-of-vowels-in-a-given-string/comment-page-1/#comment-2922</link>
		<dc:creator>Anand Gopal makwa Munger</dc:creator>
		<pubDate>Mon, 14 Jun 2010 06:55:59 +0000</pubDate>
		<guid isPermaLink="false">http://electrofriends.com/?p=379#comment-2922</guid>
		<description>//This is C# Code

//You can do simply Like This


using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void btnSubmit_Click(object sender, EventArgs e)
    {
        string str;
        str = txtString.Text;
            
        int vowel = 0;
        for (int n = 0; n &lt; str.Length; n++)
        {

            switch (str[n])
            {
                case &#039;a&#039;:
                case &#039;A&#039;:
                    vowel++;
                    break;
                case &#039;e&#039;:
                case &#039;E&#039;:
                    vowel++;
                    break;
                case &#039;i&#039;:
                case &#039;I&#039;:
                    vowel++;
                    break;
                case &#039;o&#039;:
                case &#039;O&#039;:
                    vowel++;
                    break;
                case &#039;u&#039;:
                case &#039;U&#039;:
                    vowel++;
                    break;
            }
        }
        Response.Write(vowel);
    }
}</description>
		<content:encoded><![CDATA[<p>//This is C# Code</p>
<p>//You can do simply Like This</p>
<p>using System;<br />
using System.Data;<br />
using System.Configuration;<br />
using System.Web;<br />
using System.Web.Security;<br />
using System.Web.UI;<br />
using System.Web.UI.WebControls;<br />
using System.Web.UI.WebControls.WebParts;<br />
using System.Web.UI.HtmlControls;</p>
<p>public partial class _Default : System.Web.UI.Page<br />
{<br />
    protected void Page_Load(object sender, EventArgs e)<br />
    {</p>
<p>    }<br />
    protected void btnSubmit_Click(object sender, EventArgs e)<br />
    {<br />
        string str;<br />
        str = txtString.Text;</p>
<p>        int vowel = 0;<br />
        for (int n = 0; n &lt; str.Length; n++)<br />
        {</p>
<p>            switch (str[n])<br />
            {<br />
                case &#039;a&#039;:<br />
                case &#039;A&#039;:<br />
                    vowel++;<br />
                    break;<br />
                case &#039;e&#039;:<br />
                case &#039;E&#039;:<br />
                    vowel++;<br />
                    break;<br />
                case &#039;i&#039;:<br />
                case &#039;I&#039;:<br />
                    vowel++;<br />
                    break;<br />
                case &#039;o&#039;:<br />
                case &#039;O&#039;:<br />
                    vowel++;<br />
                    break;<br />
                case &#039;u&#039;:<br />
                case &#039;U&#039;:<br />
                    vowel++;<br />
                    break;<br />
            }<br />
        }<br />
        Response.Write(vowel);<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>

