MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / isAlNum

Function isAlNum

CPP/Trees/Expression_tree/BST.c:41–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39}
40
41int isAlNum(char ch) {
42 //48-57 0-9
43 //65-90 A-Z
44 //97-122 a -z
45
46 if(((int)ch) >= 48 && ((int)ch) <= 57) {
47 return 1;
48 }
49 if(((int)ch) >= 65 && ((int)ch) <= 90) {
50 return 1;
51 }
52 if(((int)ch) >= 97 && ((int)ch) <= 122) {
53 return 1;
54 }
55 return 0;
56}
57
58char* convertToPostFix(char* inputString, int size) {
59 int index = 0;

Callers 1

convertToPostFixFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected