Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main(){
- int i, up, low, sum=0;
- printf("Enter upper and lower limit");
- scanf("%d %d", &up, &low);
- for(i=low;i=up;i++){
- if (i%2!=0){
- sum=sum+i;
- }
- }
- printf("Sum is %d", sum);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement