User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







cpp:cctype:isprint

isprint

    int isprint(int chr);

tests if character is printable

cpp Sourcecode Example

#include <iostream> /* including standard library */
#include <string>
#include <cctype>
 
using namespace std;
int main ( void )
{
  int i;
  string str="Test -!&%1";
  for (i=0; i <= 11;i++)
    {
     if ( isprint(str[i]) != 0 )
      {
        cout << "Character " << i << " is printable char" << endl;
      }
    }
  return 0;
}

output

  Character 0 is printable char
  Character 1 is printable char
  Character 2 is printable char
  Character 3 is printable char
  Character 4 is printable char
  Character 5 is printable char
  Character 6 is printable char
  Character 7 is printable char
  Character 8 is printable char
  Character 9 is printable char
  

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
cpp/cctype/isprint.txt · Last modified: 2024/02/16 01:04 (external edit)

Impressum Datenschutz