Showing posts with label toupper() in c. Show all posts
Showing posts with label toupper() in c. Show all posts

Wednesday, May 26, 2021

, , , , , ,

toupper() function in c with exmaple program

 toupper() function in c programming is used to convert lowercase alphabets to uppercase letters.When a programmer passed a lowercase alphabet to toupper() function then it converts it to uppercase.Or when a uppercase alphabet is passed then function returns same value.Syntax for toupper() function in c :- int toupper(int ch);Example Program for toupper() in c :- Let's go with...