<?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="https://studentprojects.in/software-development/c-tutorials/c/string/to-count-the-number-of-vowels-in-a-given-string/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-count-the-number-of-vowels-in-a-given-string/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Tue, 16 Dec 2014 04:26:58 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: joy		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-count-the-number-of-vowels-in-a-given-string/comment-page-1/#comment-60584</link>

		<dc:creator><![CDATA[joy]]></dc:creator>
		<pubDate>Tue, 16 Dec 2014 04:26:58 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=379#comment-60584</guid>

					<description><![CDATA[How about counting each vowels in every sentence? i.e a=3,e=4,i=5........]]></description>
			<content:encoded><![CDATA[<p>How about counting each vowels in every sentence? i.e a=3,e=4,i=5&#8230;&#8230;..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: sowmya sri		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-count-the-number-of-vowels-in-a-given-string/comment-page-1/#comment-9558</link>

		<dc:creator><![CDATA[sowmya sri]]></dc:creator>
		<pubDate>Fri, 01 Mar 2013 14:13:10 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=379#comment-9558</guid>

					<description><![CDATA[it&#039;s so nice and thanks a lot]]></description>
			<content:encoded><![CDATA[<p>it&#8217;s so nice and thanks a lot</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anand Gopal makwa Munger		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-count-the-number-of-vowels-in-a-given-string/comment-page-1/#comment-2922</link>

		<dc:creator><![CDATA[Anand Gopal makwa Munger]]></dc:creator>
		<pubDate>Mon, 14 Jun 2010 06:55:59 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=379#comment-2922</guid>

					<description><![CDATA[//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 &#060; 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>
