Write a C program to do the following steps Find all the nu
Write a C program to do the following steps :
Find all the numbers(if any) when squared,consists of only even numbers between 1000 to 9999 .
Write a C program to do the following steps :
Find all the numbers(if any) when squared,consists of only even numbers between 1000 to 9999 .
Find all the numbers(if any) when squared,consists of only even numbers between 1000 to 9999 .
Find all the numbers(if any) when squared,consists of only even numbers between 1000 to 9999 .
Solution
Answer:
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
for(i = Sqrt(1000);i<= Sqrt(9999) ;i++)
{
i = sqrt (i);
i = i +2;
}
