Home » C Programming » Strings » Question
  1. The following C expression can be substituted for?
    if (isalpha(c) && isdigit(c))
    1. if (isalphanum(c))
    2. if (isalphanumeric(c))
    3. if (isalnum(c))
    4. All of above
    5. None of these
Correct Option: E

None of these



Your comments will be displayed only after manual approval.