User Tools

Site Tools


cpp:cctype:toascii

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

cpp:cctype:toascii [2024/02/16 01:04] (current)
Line 1: Line 1:
 +{{keywords>wiki library source code example reference}}
 +===== toascii =====
 +<code cpp>
 +    int toascii (int c);
 +</code>
 +a macro thats convert **c** into ascii chars
 +
 +===== cpp Sourcecode Example =====
 +<code cpp>
 +#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;
 +   } 
 + 
 + }
 +
 +</code>
 +==== 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