Subscribe for more such posts..

Dear Reader...
I hope u are like my posts. If so then please don't forget to like , share and follow my blog for more such posts ,also feel free to write suggestions in the comment box given over here.

Thank you...

Search This Blog

Program to convert a Lower case character into an Upper case character in C.


#include <stdio.h>
void main()
{
	char LC , UC ; 
	
	printf("enter lowercase ch: ");
	
	scanf("%c" , &LC);
	
	UC = LC - 32 ; 
	
	printf("uppercase : %c\n" , UC);
	
}



No comments:

Post a Comment