C addition using modulus
With little-endian ints (and assuming ASCII text, and 8-bit bytes, and all the other assumptions the code requires), and ignoring all the technically-wrong-in-modern-C stuff in the code, your “What I understand so far” is correct. gets(&n) will store the ASCII values of A, space, and B into the first 3 bytes of n. It’ll also … Read more