اكتب برنامج بلغة C لحساب عدد الحروف المتحركة والحروف الساكنة في قيمة نصية (string) باستخدام مؤشر

  • برمجة
  • برمجة سي c

اكتب برنامج بلغة C لحساب عدد الحروف المتحركة والحروف الساكنة في قيمة نصية (string) باستخدام مؤشر

الخرج المتوقع :

Pointer : Count the number of vowels and consonants :
----------------------------------------------------------
 Input a string: string
 Number of vowels : 1
 Number of consonants : 5

الأجوبة

/*Write a program in C to count the number of vowels and consonants in a string using a pointer*/

#include <stdio.h>
int main()
{
    char str1[50];
    char *pt;
    int  ctrV,ctrC;
 	printf("\n\n Pointer : Count the number of vowels and consonants :\n"); 
	printf("----------------------------------------------------------\n");	    
    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;
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...