Why these two instructions give me the same result ? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 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) ) );

22nd Oct 2019, 10:06 PM
Abdelhaq
Abdelhaq - avatar
1 Antwort
+ 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.
23rd Oct 2019, 2:23 AM
Ipang