After the assignment statement result isdigit result has th
After the assignment statement result = isdigit(\'$\'), result has the value ___. The code cout
Solution
3.After the assignment statement result=isdigit(\'$\') result has the value 0.
Explanation :-
* isdigit tests to see if the character is a digit or not.
* Therefore isdigit(digit) returns a non-zero value whereas isdigit(!digit) returns zero.
