Answers for "how to check if a char is a symbol in c"

C
1

c check if char is an operator

char o = '+';	//Or some other character

if (o == '%' || o == '/' || o == '*' || o == '+' || o == '-') {
	//Do something
    //...
}
Posted by: Guest on June-09-2020

Code answers related to "how to check if a char is a symbol in c"

Code answers related to "C"

Browse Popular Code Answers by Language