<?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>ziynx interview questions and answers - Wikitechy</title>
	<atom:link href="https://www.wikitechy.com/interview-questions/tag/ziynx-interview-questions-and-answers/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wikitechy.com/interview-questions/tag/ziynx-interview-questions-and-answers/</link>
	<description>Interview Questions</description>
	<lastBuildDate>Tue, 14 Sep 2021 06:09:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.wikitechy.com/interview-questions/wp-content/uploads/2025/10/cropped-wikitechy-icon-32x32.png</url>
	<title>ziynx interview questions and answers - Wikitechy</title>
	<link>https://www.wikitechy.com/interview-questions/tag/ziynx-interview-questions-and-answers/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to count alphabets, numeric and special characters ?</title>
		<link>https://www.wikitechy.com/interview-questions/c/how-to-count-alphabets-numeric-and-special-characters/</link>
					<comments>https://www.wikitechy.com/interview-questions/c/how-to-count-alphabets-numeric-and-special-characters/#respond</comments>
		
		<dc:creator><![CDATA[Editor]]></dc:creator>
		<pubDate>Mon, 12 Jul 2021 20:12:46 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Accentur interview questions and answers]]></category>
		<category><![CDATA[Applied Materials interview questions and answers]]></category>
		<category><![CDATA[Asian Paints Ltd. interview questions and answers]]></category>
		<category><![CDATA[Bosch India Software interview questions and answers]]></category>
		<category><![CDATA[c program to check special characters]]></category>
		<category><![CDATA[c program to count number of characters in a string]]></category>
		<category><![CDATA[c program to count number of words spaces characters digits and special symbols]]></category>
		<category><![CDATA[c program to find special characters in string]]></category>
		<category><![CDATA[Capgemini interview questions and answers]]></category>
		<category><![CDATA[CASTING NETWORKS INDIA PVT LIMITED interview questions and answers]]></category>
		<category><![CDATA[CGI Group Inc interview questions and answers]]></category>
		<category><![CDATA[Chetu interview questions and answers]]></category>
		<category><![CDATA[Ciena Corporation interview questions and answers]]></category>
		<category><![CDATA[Collabera Technologies interview questions and answers]]></category>
		<category><![CDATA[Dell International Services India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[DHFL Pramerica Life Insurance Company Ltd interview questions and answers]]></category>
		<category><![CDATA[Elico HealthCare Services Ltd interview questions and answers]]></category>
		<category><![CDATA[Flipkart interview questions and answers]]></category>
		<category><![CDATA[HCL Technol interview questions and answers]]></category>
		<category><![CDATA[IBM interview questions and answers]]></category>
		<category><![CDATA[Indecomm Global Services interview questions and answers]]></category>
		<category><![CDATA[Mavenir interview questions and answers]]></category>
		<category><![CDATA[Mphasis interview questions and answers]]></category>
		<category><![CDATA[NetApp interview questions and answers]]></category>
		<category><![CDATA[number or special character in c++]]></category>
		<category><![CDATA[Oracle Corporation interview questions and answers]]></category>
		<category><![CDATA[PeopleStrong interview questions and answers]]></category>
		<category><![CDATA[R Systems interview questions and answers]]></category>
		<category><![CDATA[Raqmiyat Information Technologies Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Reliance Industries Ltd interview questions and answers]]></category>
		<category><![CDATA[SAP Labs India Pvt Ltd interview questions and answers]]></category>
		<category><![CDATA[Tata AIA Life Insurance interview questions and answers]]></category>
		<category><![CDATA[Tech Mahindr interview questions and answers]]></category>
		<category><![CDATA[The Linde Group interview questions and answers]]></category>
		<category><![CDATA[write a c program to check whether a character is uppercase or lowercase alphabet]]></category>
		<category><![CDATA[write a c program to check whether an alphabet is a vowel or consonant]]></category>
		<category><![CDATA[write a program to check whether an input character is digit or not]]></category>
		<category><![CDATA[write a program to check whether the given input is alphabet]]></category>
		<category><![CDATA[ziynx interview questions and answers]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=319</guid>

					<description><![CDATA[Answer : In this example, we have to count digits, spaces, special...]]></description>
										<content:encoded><![CDATA[<div class="TextHeading">
<div class="hddn">
<h2 id="how-to-count-alphabets-numeric-and-special-characters" class="color-pink" style="text-align: justify;">How to count alphabets, numeric and special characters ?</h2>
</div>
</div>
<p style="text-align: justify;">In this example, we have to count digits, spaces, special characters and alphabets using C program.</p>
<div class="code-embed-wrapper"> <div class="code-embed-infos"> </div> <pre class="language-c code-embed-pre line-numbers"  data-start="1" data-line-offset="0"><code class="language-c code-embed-code">#include &lt;stdio.h&gt;<br/> <br/>int main()<br/>{<br/>    char    str[100];<br/>    int countDigits,countAlphabet,countSpecialChar,countSpaces;<br/>    int counter;<br/> <br/>    //assign all counters to zero<br/>    countDigits=countAlphabet=countSpecialChar=countSpaces=0;<br/> <br/>    printf(&quot;Enter a string: &quot;);<br/>    gets(str);<br/> <br/>    for(counter=0;str[counter]!=NULL;counter++)<br/>    {<br/> <br/>        if(str[counter]&gt;=&#039;0&#039; &amp;&amp; str[counter]&lt;=&#039;9&#039;)<br/>            countDigits++;<br/>        else if((str[counter]&gt;=&#039;A&#039; &amp;&amp; str[counter]&lt;=&#039;Z&#039;)||(str[counter]&gt;=&#039;a&#039; &amp;&amp; str[counter]&lt;=&#039;z&#039;))<br/>            countAlphabet++;<br/>        else if(str[counter]==&#039; &#039;)<br/>            countSpaces++;<br/>        else<br/>            countSpecialChar++;<br/>    }<br/> <br/>    printf(&quot;\nDigits: %d \nAlphabets: %d \nSpaces: %d \nSpecial Characters: %d&quot;,countDigits,countAlphabet,countSpaces,countSpecialChar);<br/> <br/>    return 0;<br/>}</code></pre> </div>
<h2 id="output" class="color-pink" style="text-align: justify;">Output :</h2>
<div class="code-embed-wrapper"> <div class="code-embed-infos"> </div> <pre class="language-c code-embed-pre line-numbers"  data-start="1" data-line-offset="0"><code class="language-c code-embed-code">Enter a string: wikitechy, 789@#%12.<br/><br/>Digits: 5<br/>Alphabets: 9<br/>Spaces: 1<br/>Special Characters: 5</code></pre> </div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/c/how-to-count-alphabets-numeric-and-special-characters/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
