ctype.h


E-mail this post



Remember me (?)



All personal information that you provide here will be governed by the Privacy Policy of Blogger.com. More...



#include <ctype.h>, syntax at the beginning of our code, means we automatically included these (pre-defined) functions in our program:



int toupper(int ch);
int tolower(int ch);
int isdigit(int c);
figure (0-9)
int isalpha(int c);
letter (A-Z or a-z)
int isalnum(int c);
letter (A-Z or a-z) or figure (0-9)
int isprint(int c);
character which can be printed (0x20-0x7E)
int iscntrl(int c);
control char (0x7F or 0x00-0x1F)
int isspace(int c);
empty space
int islower(int c);
letter (a-z)
int isupper(int c);
letter (A-Z)








Technorati Tags:
, , , , , ,



2 Responses to “ctype.h”

  1. Anonymous Anonymous 

    i want header file for showbits() function. please tell me.

  2. Anonymous Anonymous 

    Pleae let me know, if came accross for header file for showbits

    mmechu@india.tejasnetworks.com

Leave a Reply

      Convert to boldConvert to italicConvert to link

 


German Flag Spanish Flag French Flag Italian Flag Portuguese Flag Japanese Flag Korean Flag Chinese Flag British Flag


This Website is optimized for Firefox. Users browsing with Internet Explorer may encounter problems while viewing pages.


C++ Maniac



Learn C



Additional



#include



Learn Converting



Appendix


Links


Previous posts




Daily Lessons for programming in Visual Studio, using C code.