Q:

C Program to count the number of vowels and consonants in a string using a pointer

0

C Program to count the number of vowels and consonants in a string using a pointer

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <stdio.h>
int main()
{
    char str1[50];
    char *pt;
    int  ctrV,ctrC;
 		    
    printf(" Input a string: ");
    fgets(str1, sizeof str1, stdin);
     
    //assign address of str1 to pt
    pt=str1;
     
    ctrV=ctrC=0;
    while(*pt!='\0')
    {
        if(*pt=='A' ||*pt=='E' ||*pt=='I' ||*pt=='O' ||*pt=='U' ||*pt=='a' ||*pt=='e' ||*pt=='i' ||*pt=='o' ||*pt=='u')
            ctrV++;
        else
            ctrC++;
        pt++; //pointer is increasing for searching the next character
    }
     
    printf(" Number of vowels : %d\n Number of consonants : %d\n",ctrV,ctrC-1);        
    return 0;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now