Answers for "isspace"

C
1

isspace

#include <ctype.h>
char c;   
isspace(c);
Posted by: Guest on February-04-2021
0

isspace

#include <ctype.h> 
isspace(c);
// Checks whether a char, c is space or not.
// Return a non-zero integer if c is a non-space char; else returns 0
Posted by: Guest on May-31-2021

Code answers related to "C"

Browse Popular Code Answers by Language