int strcmp (const unsigned char * p, const unsigned char * q) { while (*p && (*p == *q)) { p++; q++; } return *p - *q;

Previous slide Next slide Back to first slide View graphic version