Thanks for making and sharing this. I was having trouble understanding the difference between the post-and pre-fixes while reading from a textbook on my own. Your video made the distinction between the two clear for me.
@teamtamilasfc31283 жыл бұрын
U deserve million subs Anil ❤️
@LearningLad3 жыл бұрын
Thank you :)
@NupurArtwork8 жыл бұрын
Ur way of teaching is very good...this helped a lot. Thanks!
@LearningLad8 жыл бұрын
+Nupur Dhamija glad to hear that :)
@johnnyd28253 жыл бұрын
Thanks. I finally get it. haha. such a simple concept but kept getting the questions wrong on my quiz!
@LearningLad3 жыл бұрын
Glad it helped!
@neethajaison53658 жыл бұрын
Subscribed.. :) Thanks a lot for the videos... these videos are great for programmers,..Expecting J2EE programs too... Thanks again..
@LearningLad8 жыл бұрын
pleasure. i'll add more video's as early as possible.
@learnanythingforfree213110 жыл бұрын
good one..learned something..
@nabeelkenjar95088 жыл бұрын
Awesome anil bhai...... put a tutorials of xamarin also.......
@dilpreetsingh97387 жыл бұрын
U teach well....good job
@MUKESHKUMAR-yw8by4 жыл бұрын
Thank you sir🥰🥰
@LearningLad4 жыл бұрын
my pleasure :)
@agraharamravindranath47757 жыл бұрын
good explanation
@LearningLad7 жыл бұрын
Thank you :)
@rajeswaridadiboyina50328 жыл бұрын
thank you so much
@LearningLad8 жыл бұрын
my pleasure :)
@zaidmahdi17208 жыл бұрын
nice
@LearningLad8 жыл бұрын
+zaid mahdi thank you :)
@jashandeepsingh90288 жыл бұрын
who to increment or decrement by 2 values or more
@LearningLad8 жыл бұрын
int i; i += 2; // will increment by 2 i -= 2; //will decrement by 2
@catalindobre8938 жыл бұрын
but why? why do we need to increment and decrement ? in what context?
@JoshFlorii7 жыл бұрын
I think, if you wanted to perform an operation a certain amount of times, you could do a for loop. So for values between x and y, perform this operation. As the int increments each loop you get further from x and closer to y. When you reach y, you will have performed an operation as many times as int incremented at the end of each for loop before finally arriving at y, which triggers the end of the loop. What practical application that has idk, i'm just learning. But hey I think I knew an answer!