I have learnt in assembly about paragraph boundaries and how they are a
good place for a segment to begin. Does this mean that setting array
lengths in C/C++ to multiples of 10h is faster because they are always
divisible by 10h (16d) making the job for the address bus easier? ie
char szBuffer[1024];
char szBuffer[512];
char szBuffer[256];
char szBuffer[128];
char szBuffer[64];
char szBuffer[32];
char szBuffer[16];
Kip