Question:Write a c program to convert the string from lower case to upper case 

Answer 
#include<stdio.h>
int main(){
  char str[20];
  int i;
  printf("Enter any string->");
  scanf("%s",str);
  printf("The string is->%s",str);
  for(i=0;i<=strlen(str);i++){
            if(str[i]>=97&&str[i]<=122)
            str[i]=str[i]-32;
  }
  printf("\nThe string in lowercase is->%s",str);
  return 0;
}
 

+ Report
Total Preview: 936
Write a c program to convert the string from lower case to upper case
Copyright © 2024. Powered by Intellect Software Ltd