Forum: C Dec 7th, 2006 |
| Replies: 5 Views: 21,809 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... |
Forum: C Dec 7th, 2006 |
| Replies: 10 Views: 3,523 #include <stdio.h>
#include <string.h>
void main()
{
char string[] = "STEPHEN JOHNSON - LTD";
char key[] = "LTD";
int i = 0; |