Computer Science, asked by vageesha89, 11 months ago

write programming in C to find all even numbers between 1 to 50​

Answers

Answered by harikumars5
3

int main();

{

int i;

for(i=1; i<50;i++)

if(i%2==0)

printf('%d',i);

return 0;

}

Similar questions