Posts
 
Reputation
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
~811 People Reached
Favorite Forums
Favorite Tags
c x 2

2 Posted Topics

Member Avatar for dannyfang

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 …

Member Avatar for Sokurenko
0
683
Member Avatar for sgriffiths

[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 …

Member Avatar for mkadwa
0
128

The End.