Ask Question - Get Answer

1 Ans Write a C program to check a Prime number

Asked by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:39 PM at (Education Tutorials)

Please log in to answer, like and save
0
Save 0

<<< Previous
Log in to Answer Next >>>

Answer(s):

A C program to check prime number :


#include<stdio.h>

int isPrime(int n)

{

    int i;

    if(n<=1) return 0;

    for(i=2; i*i<n; i++)

    {

        if(n%i==0)

            return 0;

    }

    return 1;

}

int main()

{

    int n, result;

    printf("Enter a Number\n");

    scanf("%d", &n);

    result = isPrime(n);

    if(result==1)

        printf("%d is a Prime number", n);

    else

        printf("%d is not a Prime number", n);

    return 0;

}


Answered by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:41 PM

Please log in to Upvote, Downvote and Report
           

Related Q/A:

3 Ans Three ways to find Greatest Common Divisor (GCD) and Least Common Multiple (LCM) in a C program

1 Ans Write a C program to find nth Fibonacci number

1 Ans Write a C++ program for BigMod math

2 Ans Write a C program for Binary Search algorithm

1 Ans Write a C program to implement Insertion sort data structure and algorithm

1 Ans Write a C Program to find factorial using recursion

1 Ans Write a C program to print Fibonacci number using recursion

1 Ans The general rules for constructing names for variables (unique identifiers)

1 Ans Write a C program to find the highest and lowest number in a series

3 Ans BPSC Assistant Programmer Lab Aptitude test Programs and Queries with Proper solution (Taken By BCC)