Write a c program to find square root of prime number
Answers
Answered by
0
Answer:
C Program to calculate prime number in efficient way using sqrt function:
#include<stdio.h>
#include<math.h>
void main()
{
int num,i;
int FLAG=1;
printf(“Enter any Positive Number : “);
scanf(“%d”,&num);
Similar questions