Showing posts with label Program to check prime using function. Show all posts
Showing posts with label Program to check prime using function. Show all posts

Wednesday, July 20, 2011

Program to check prime using function

/*Serial No.78     [swami47.cpp]*/

#include<stdio.h>
#include<conio.h>
void prime(int n)
    {
        int a=2;
        if(n==a)
        printf("prime number");
        while(a<n)
            {
                while(n%a!=0)
                    {
                        a++;
                    }
                if(n/a==1)
                    {
                        printf("prime number");
                    }
                else
                    {
                        printf("not prime");
                        break;
                    }
            }
    }
void main()
    {
        int num;
        printf("Enter number:=");
        scanf("%d",&num);
        prime(num);
        getch();
    }