I have a while
loop as below.
while (*d++ = *sc++)
As I wish to understand pointers in dept I would like to enter the while
loop and understand how the while
loop is working with the pointers.
I used step
in gdb
but it does not go into the while
loop completely. Is there any way to get into the while
loop and understand the manipulation in every step.