Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- int main()
- {
- int i,sum=0;
- for (i=0;i<=100;i=i+2)
- {
- sum=sum+i;
- }
- printf("sum of even number== %d",sum);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement