History, asked by skgiaul466, 5 hours ago

print square of first 10 even numbers​

Answers

Answered by dandekarsneha1002
2

Hope it helps u. Please mark me as Brainlist.

Attachments:
Answered by harshit5645
1

This program prints n even numbers(not just 10) :

#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