English, asked by wwwsameersaifi12345, 1 month ago

2
sin 8-coso sin +cos
to
sin 0+ cose sin 0-coso sin? 0-1​

Answers

Answered by kabisimadgp
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