Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

เขียนโปรแกรม C เพื่อแปลงอักษรตัวพิมพ์ใหญ่เป็นตัวพิมพ์เล็กโดยไม่ต้องใช้ฟังก์ชันการแปลงสตริง


ก่อนจะไปทำความรู้จักกับการแปลงอักษรตัวพิมพ์ใหญ่เป็นตัวพิมพ์เล็กโดยไม่ต้องใช้ฟังก์ชันการแปลงสตริง

ให้เราดูที่โปรแกรมแปลงบนเป็นล่างโดยใช้ฟังก์ชั่นแปลงแล้วคุณจะได้รับความกระจ่างเกี่ยวกับสิ่งที่เรากำลังทำในโปรแกรม -

ตัวอย่าง

#include <stdio.h>
#include <string.h>
int main(){
   char string[50];
   printf("enter a string to convert to lower case\n");
   gets(string); /reading the string
   printf("The string in lower case: %s\n", strlwr(string)); //strlwr converts all upper    to
   lower
   return 0;
}

ผลลัพธ์

enter a string to convert to lower case
CProgramming LangUage
The string in lower case: cprogramming language

ทีนี้มาดูโปรแกรมแปลงบนเป็นล่างโดยไม่ต้องใช้ฟังก์ชันที่กำหนดไว้ล่วงหน้า -

ตัวอย่าง

#include<stdio.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]>=65&&string[i]<=90){
         string[i]=string[i]+32;
      }
   }
   printf("The converted lower case string is : ");
   puts(string);
}

ผลลัพธ์

Enter the string : TUTORIALSPOINT
The converted lower case string is : tutorialspoint