Program to print sum of first ten natural numbers
1
April 02, 2020
Explanation
Here the variable s denotes to sum and is initialized with value 0. When the loop begins, the s adds the value of i with its previous values along with the loop.When the loop terminate, the last sum is stored in s and is printed outside of the loop.
Output
Tags
Nice One
ReplyDeleteIf you have any doubt, let me know...