interigal upper limit π/2 lower limit 0 √tanx /1+√tanx dx =π/4
Answers
Answered by
0
Answer:
include <stdio.h>
int main()
{
int i, n;
// Input upper limit of even number from user
printf("Print all even numbers till: ");
scanf("%d", &n);
printf("All even numbers from 1 to %d are: \n", n);
while(i<=n)
{
/* Check even condition before printing */
if(i%2==0)
{
printf("%d\n", i);
}
i++;
}
return 0;
}
Similar questions
English,
1 month ago
Physics,
1 month ago
Computer Science,
3 months ago
Chemistry,
3 months ago
Computer Science,
10 months ago
Math,
10 months ago