×

Loading...

But .............

it really depends on your business logic,
for instance,
you have n elements array
a[0]='1';
a[1]='3';
....
a[m]='\x07';
.....
a[n-2]='3';
a[n-1]='\0';

what will you do with '\x07'?
treat it as 7 or 0 or skip it?
Report