Math, asked by ItZzPinkCupCake, 2 months ago

Write a program to take two numbers from the user and print the count of even & odd numbers between the two numbers(both inclusive).

Anyone who answer spam will be considered as stu.pid and cra.zy.

SPAM ANSWERS WILL BE DELETED

BE CAREFUL

★ GOOD NIGHT ★​

Answers

Answered by sonprodigal
2

Step-by-step explanation:

int main()

int count, limit;

printf("Enter start and end value to generate Odd numbers\n");

scanf("%d%d", &count, &limit);

printf("\nodd numbers between %d and %d are:\n", count, limit);

while(count <= limit)

if(count % 2 != 0)

}

printf("%d\n", count);

count++;

}

return 0;

}

Answered by saraharmy123
3

hi sis how r u ,u remember me???.

Similar questions