SyntaxFix
Write A Post
Hire A Developer
Questions
In C the char type has a numeric value so the > operator will work just fine for example
#include <stdio.h> main() { char a='z'; char b='h'; if ( a > b ) { printf("%c greater than %c\n",a,b); } }