CompuServe Thread

Forum unknown · Programming

Aztec Confusion

1 messages in this thread
#14444From: William Volk(Aegis DevelApr 11, 1986 1:45 PM
test_string is a POINTER to a string …. i.e. char *test_string. Pointers have 4 bytes of length. You need to use strlen(test_string) and add 1 to it (for the terminating NULL).