Click here to Skip to main content
15,885,546 members

Comments by goksurahsan (Top 66 by date)

goksurahsan 30-Jun-20 12:45pm View    
Yes, I understand now. Thank you again and again. I learned new thing today :)
goksurahsan 30-Jun-20 12:23pm View    
Really thank you so much. I couldn't understand because I was new to C. I get it now. While the address indicated by the pointer changes in x = * ptr ++ section, the value of y changes according to the address indicated by ptr in y = ++ * ptr section.
goksurahsan 30-Jun-20 11:29am View    
My question about case 0 when i=3 and x=*ptr++. Because when I used debugger I saw ++ did not work.
goksurahsan 30-Jun-20 10:48am View    
But ++ near ptr. I should it change ptr. Is this true?
goksurahsan 30-Jun-20 10:44am View    
And while these codes work as I thought, why does the increment process don't work in the previous code when i = 3 in * (ptr) ++ section. Unfortunately this is the part I do not understand.