iswgraph() in C++

iswgraph(): This function is available in the file ctype.h. This function checks whether a wide character has a graphical representation. This function returns a value different from zero (i.e. true) if given a wide character with graphical representation. Zero (i.e. false) otherwise.

Parameters: One parameter is required for this function.

arg: A wide character to be checked, cast into wint_t.

Syntax:

int iswgraph(wint_t _C)

iswgraph(arg)

For Example:

iswgraph(L'A') = > It returns true (any non-zero value).

Approach

C++

#include <bits/stdc++.h>
using namespace std;

int main()
{
    wint_t C = L'A';

    cout << iswgraph(C<< "\n";

    return 0;
}


No comments:

Post a Comment