Ask your own question, for FREE!
Computer Science 15 Online
OpenStudy (pottersheep):

Simple question about for loop incrementing.... for (int a = 0; a < array.length; ++a){

OpenStudy (anonymous):

a++

OpenStudy (anonymous):

++a is prefix increment increment operator so a value gets updated before entering in the group.so u will get value associate to a+1 where you expect the value associated to a (in case of postfix operator a++(in place of (int a=0;a<array.length();a++))

OpenStudy (anonymous):

*loop not group

OpenStudy (anonymous):

What's the question?

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!