How to change ASCII address in memory

as topic, I must chane ASCII formats with address changely but I could not it. I saw some scripts but that about int formats(4 bytes)

I want about ASCII, please help...
It's really hard to understand, turkce konus, anlamaya calisim, abi :)
I'll take a leap and say that this is a question about casting integers into chars so that you can use those symbols from the extended ASCI table. If that's the case then:

1
2
3
4
   char c = 1;

    std::cout << c << std::endl;
    return 0;


Not using quotes around the value tells the compiler to use the character stored at that number and not the literal character typed.
Topic archived. No new replies allowed.