Horje
c check if char is an operator Code Example
c check if char is an operator
char o = '+';	//Or some other character

if (o == '%' || o == '/' || o == '*' || o == '+' || o == '-') {
	//Do something
    //...
}




C

Related
c printing char pointer Code Example c printing char pointer Code Example
toggling setting clearing checking changing a bit in c Code Example toggling setting clearing checking changing a bit in c Code Example
Access denied creating xampp-control.ini Code Example Access denied creating xampp-control.ini Code Example
get range of values in mongodb Code Example get range of values in mongodb Code Example
wsl open port to windows Code Example wsl open port to windows Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8