Is there any function that can convert hex char array to an ASCII char array, something like this:
char array_input[] = "48656C6C6F3"; //Input hex sequence
char array_output[] = "Hello"; // Output ASCII
and that can accept input sequences that contain more than 300 letters.
something like:
char array_input[] = "08010000013feb55f000000000000f74000f0ea850209a690000940000120000001e09010002000300040016014703f0001504c8000c0900730a00460b00501300464306d7440000b5000bb60007422e9f180000cd0386ce000107c700000000f10000601a46000001344800000bb84900000bb84a00000bb84c00000000024e0000000000000000cf000001";
char. Since this is apparently homework, show some effort how to solve this.