User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







cpp:cctype:toascii

toascii

    int toascii (int c);

a macro thats convert c into ascii chars

cpp Sourcecode Example

#include <iostream> /* including standard library */
#include <cctype> 
 
using namespace std;
int main( void ) 
 { 
   int i; 
   for (i=0x2a; i<=0x42; i++) { 
       cout << i << " is " << static_cast<char>(toascii(i)) << endl;
   } 
 
 }

output

  output
  0x2a is *
  0x2b is +
  0x2c is ,
  0x2d is -
  0x2e is .
  0x2f is /
  0x30 is 0
  0x31 is 1
  0x32 is 2
  0x33 is 3
  and so on, and so on

on the occasion of the current invasion of Russia in Ukraine

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

Impressum Datenschutz