Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- char tab_ASCII[256];
- char znak;
- for(int i=0;i<255;i++){
- znak=i;
- cout<<i+1<<": "<<znak<<endl;
- tab_ASCII[i]=znak;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement