Computer Science, asked by arifzameer4028, 10 months ago

Write a c program to find square root of prime number

Answers

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