|
Technical Interview Questions
Visual Basic Interview Question
ASP .NET Interview Questions
C++ Interview Questions
C
Interview Questions
.........More
Programming Source Codes
C/C++ Source Codes
C# Source Codes
.........More
Aptitude Interview Questions
C/C++ Aptitude Questions
C Aptitude Questions
.........More
Tutorials
C Tutorial
C++ Tutorial
.........More
Soft Skills
Communication Skills
Leadership Skills
.........More
|
|
C/C++ Source Codes
count words and vowels in a
line
// program to count number of words in a given string
#include<stdio.h>
#include<conio.h>
void main()
{
int wc,c,i,flag,v,w,space;
wc=c=i=v=w=space=0;
flag=1;
clrscr();
printf("enter a string press enter when you have done\n");
for(i=0 ; (c=getchar()) !='\n' ; i++)
{
if(c==' '''c=='\t')
flag=1;
else if(flag)
{
wc++;
flag=0;
}
if(c=='a'''c=='e' ''c=='i' ''c=='o' ''c=='u')
v++;
if(c!=' '&&c!='\t')
w++;
if(c==' ')
space++;
}
printf("\n\nnumber of words are %d \nno of vovels are %d",wc,v);
printf("\nno of char are %d\nno of space are %d",w,space);
getch();
}
<<<----- Return to
C/C++ Source Code Questions Page.
Have a Question ?
post your questions here. It
will be answered as soon as possible.
Check
Object Oriented Interview
Questions for more Object Oriented Interview Questions with answers
Check
Data Structure
Interview Questions for more data structure interview questions with
answers
|