#include <iostream>
using namespace std;
int main() {
    //zamiana kodu ascll znak
    char znak;
    znak= 'j';
    cout<<(int)znak<<"\n";
    
    //zamiana znaku z tablicy
    int kod_ascll;
    kod_ascll=74;
    cout<<(char)kod_ascll;


    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: