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

Friday, February 26, 2021

, , ,

Example program for isupper() function in c

As it's name says isupper() function in c programming checks whether given character is an uppercase alphabet (A-Z) or not.C isupper() syntax : - int isupper(int argument);isupper() function takes a single argument in the form of int.Given argument converted into to its ASCII for the check. isupper()...