Monday 21, May 2012
Welcome Guest, Register | Login  
      Home    |    Tutorials    |    Free Ebooks    |    Free Scripts    |    Articles    |    Blog     |    About Us    |    Contact Us

  Check number is prime or not using c

Here is a code example to check the number is prime or not a prime number. It will input number from user. If number is prime, it will print "Number is prime" on screen and if number is not prime it will print "Number is not prime".

Cut & Paste Script
#include<stdio.h>
#include<conio.h>
void main()
{
int t,c=0,i;
clrscr();
printf("Enter a number\t");
scanf("%d",&t);
for(i=1;i<=t;i++)
{
if(t%i==0)
c++;
}
if(c==2)
printf("\nNumber is prime");
else
printf("\nNumber is not prime");
getch();
}
 
   
     RELATED SCRIPTS
 
pointer and there uses in c
Example code for pointer and there uses in c language....more »
Category : C Programs Hits : 784
   
arrays and pointers in c
An example code for arrays and pointers in c language....more »
Category : C Programs Hits : 582
   
C program to join two strings without using strcat
This c language program will join two strings without using strcat string function....more »
Category : C Programs Hits : 231
   
Printing triangle of numbers using c
Here is the source code for printing triangle of numbers using c language. In this example user will input a number, it will start from 1 and will go to the give number.
1
2 3
4 5 6
7 8 9 10...more »
Category : C Programs Hits : 1186
   
concatenate two strings c language
Here is an example code to concatenate two strings using clanguage....more »
Category : C Programs Hits : 1212
   
   
SCRIPT CATEGORIES
 
  C Programs
C Programs scripts
  C++ Programs
C++ Programs scripts
  Java Programs
Java Programs scripts
  JavaScript Examples
JavaScript Examples scripts
  PHP Examples
PHP Examples scripts
  VBScript Examples
VBScript Examples scripts
 
 
 
POPULAR E-BOOKS
 
Download Websites Creation 101  Ebook Websites Creation 101
   
Download Dear Employee Your Job Sucks Ebook Dear Employee Your Job Sucks
   
Download tears of the mystic rose Ebook tears of the mystic rose
   
Download Develop your own database software  Ebook Develop your own database software
   
Download Make Your Price Sell  The Master Course  Ebook Make Your Price Sell The Master Course
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz