Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.9K
2 Posted Topics
Your understanding of the removeArray is not correct. removeArray is set up as a 256 array set, which conforms to the possible values of one byte. One byte = 2 to the power 8, = 256. Thus, the possible values of a byte is 0 to 255, or 0x00 to …
[code] #include <stdio.h> #include <string.h> void main() { char string[] = "STEPHEN JOHNSON - LTD"; char key[] = "LTD"; int i = 0; size_t length = 0; size_t keylen = 0; length = strlen( string ); keylen = strlen( key ); /* ** Up to this point, the code is …
The End.
mkadwa