This C program takes an input string from the user and converts all the lowercase characters in the string to uppercase characters.
Here is a brief explanation of the code:
#include<stdio.h> int main() { int i; char a[100]; printf("\nEnter the First String:"); gets(a); printf("\nGiven First String:"); puts(a); for(i=0;a[i]!='\0';i++) { if(a[i]>=97&&a[i]<=122) { a[i]-=32; } } printf("\nUppercase Value is:%s",a); return 0; }To download raw file Click Here
Enter the First String: tutorjoes Given First String: tutorjoes Uppercase Value: TUTORJOES
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions