Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C 프로그램을 사용하여 모음을 상위에서 하위로 또는 하위에서 상위로 변환

<시간/>

문자 배열을 문자열이라고 합니다.

선언

다음은 배열에 대한 선언입니다 -

char stringname [size];

예를 들어 - char a[50]; 길이 50자의 문자열

초기화

  • 단일 문자 상수 사용 -
char a[10] = { ‘H’, ‘e’, ‘l’, ‘l’, ‘o’ ,‘\0’}
  • 문자열 상수 사용하기 -
char a[10] = "Hello":;

액세스

'\0'이 나타날 때까지 문자열에 액세스하는 데 사용되는 제어 문자열 "%s"가 있습니다.

모음을 위에서 아래로 또는 아래에서 위로 변환하는 데 사용되는 논리 이다 -

for(i=0;string[i]!='\0';i++){
   if(string[i]=='a'||string[i]=='e'||string[i]=='i'||string[i]=='o'||string[i]=='u'){
      string[i]=toupper(string[i]);
   }
}
printf("The result string with converted vowels is : ");
puts(string);

프로그램

다음은 대문자 문자열을 소문자 문자열로 변환하는 변환 함수를 사용하는 C 프로그램입니다 -

#include<stdio.h>
#include<ctype.h>
void main(){
   //Declaring variable for For loop (to read each position of alphabet) and string//
   int i;
   char string[40];
   //Reading string//
   printf("Enter the string : ");
   gets(string);
   //For loop to read each alphabet//
   for(i=0;string[i]!='\0';i++){
      if(string[i]=='a'||string[i]=='e'||string[i]=='i'||string[i]=='o'||string[i]=='u'){
         string[i]=toupper(string[i]);
      }
   }
   printf("The result string with converted vowels is : ");
   puts(string);
}

출력

위의 프로그램이 실행되면 다음과 같은 결과가 생성됩니다 -

Run 1:
Enter the string : TutoRialsPoint
The result string with converted vowels is : TUtORIAlsPOInt
Run 2:
Enter the string : c programming
The result string with converted vowels is : c programming