Advertisement
ItsMeLucifer

AsciiWypisz C++

Mar 27th, 2019
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     char tab_ASCII[256];
  8.     char znak;
  9.     for(int i=0;i<255;i++){
  10.             znak=i;
  11.             cout<<i+1<<": "<<znak<<endl;
  12.             tab_ASCII[i]=znak;
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement