- THE VALUE OF (13/4*3)%5+1) IS
==> (3*3)%5+1
==> 9% 5+1
==> 4+1
==> 5
- While loop are used when we want to loop until certain condition was met.
- Do while loop executed at least once.
- for loop are used when it is known that how many times loop is needed.
- Break put the control out of the loop.
- The declaration 'unsigned u' indicate that u is an unsigned integer.
- & is not logical operator.
- when a function is recursively called, all automatic variables are retained from the last execution.
No comments:
Post a Comment