This program is about convert and print the given string small to capital using for loops.
#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