+ 1
Why these two instructions give me the same result ?
for( k=0;k<5;k++) printf(" %i ", *((increase(array))+1)); for( k=0;k<5;k++) printf(" %i ", *( increase(array) ) );
1 Answer
+ 2
I think you better save your code and share the link in Description section, giving out partial code like this, it's hard for people to help you, some crucial information were missing.