char* palindro(char dest[], char src[], unsigned int dim) {
int i;
for (--dim, i = 0; dim <= 0; --dim, ++i)
dest[i] = src[dim];
return dest;
}
char* palindro(char dest[], char src[], unsigned int dim) {
int i;
for (--dim, i = 0; dim <= 0; --dim, ++i)
dest[i] = src[dim];
return dest;
}
There are 10 kinds of people in the world: who knows the binary numeration and who not