Showing posts with label iscntrl(). Show all posts
Showing posts with label iscntrl(). Show all posts

Monday, March 1, 2021

, , , ,

Example program for iscntrl() function in c

  iscntrl() function in c Used to check if the given character is a control character or not.Characters that are not print on the screen are known as control characters for exam newline. If a character passed by iscntrl() function is a  control character then it  return non zero integer value otherwise return 0.   iscntrl() C is define in ctype.h header file.this function ...