Currently battling against Project Euler's pset004 in #C.

How come a simple function that reverses a 6-digit number to check whether it is a playndrome (O(n)) can furiously turn into a massive resource waster when digits increase?

Unfortunately, my most feared enemy, the pointer, will save me on this one.

#coding #programming #c99