×

Prime Number code in C

Prime Number Programs in C language

In this tutorial, we will learn how to check whether the given number is a prime number or not, and how to print all the prime number between two given numbers, using C programming language.

What is a Prime Number?

A prime number is a number that can be divided only by one and the number itself. The prime numbers from 1 to 100 are 2, 3, 5, 7, 11, 13, 17, 19, 23, 29,..., 89, and 97.

Note: 0 and 1 are not accepted as prime numbers. And 2 is the only even prime number in all prime numbers.

Program 1:

A C program that uses a “for” loop to check if a specified number is a prime number:

#include <stdio.h> 
int main() 
{
  int num, k, z = 0;
  printf("Enter a number : "); 
  //put a number which we want to check whether it is prime number or not


  scanf("%d", &num); 


  
  for (k = 2; k < num; k++) 
   {
      if (num % k == 0)
	   {
         z++;
         break;
       }
   }


  if (z == 1) {
        printf("It is not a Prime number");
  }
  else {
         printf("It is a Prime number");
  }
  return 0;    
}

Output: (When we put 5 as input)

It is a Prime number

Output: (When we put 10 as input)

It is not a Prime number

Description:

  • Given num = 5, any number should be considered.
  • Take some variables and use the printf() function. 
  • Use the scanf() function to value from the user. This means that we want to know if the input is a prime number.
  • A prime number is a type of number that can only be divided by 1 and the number itself. Therefore, we need to run a for loop where the iterator starts at 2 and runs to (num-1). It is checked if num is divided by any number from 2 to (num-1).
  • When split, the code breaks out of the loop.
  • Then we need to check if the loop is running completely. When the loop is complete, it will be primed. Otherwise, it will be compound or non-prime.
  • The logic should be written  as
  • for (i = 2; i  2; i <5; i ++). Here, the loop continues until the value of i equals 5.
  • Then we will use the `if` statement as well. If the condition is true, the "if" statement is executed.
  • Otherwise, the "else" part is executed.

Program 2:

A C program that uses a while loop to check if a specified number is a prime number:

#include<stdio.h>


int main()
{
	int n, p=0, z=2;


 	printf("Enter any number : ");
  //put a number which we want to check whether it is prime number or not


	scanf("%d", &n);


	while(z<n)


	{
	
		if(n%z==0){
		   p++;
		   break;
		}
		z++;
	}
	if(p>0)
		printf("It is not a prime number");
	else 
		printf("It is a prime number");
    return 0;


} 

Output: (When we put 11 as input)

It is a Prime number

Output: (When we put 8 as input)

It is not a Prime number

Description:

  • If num = 8, we need to consider any number.
  • Take some variables and use the printf () function. 
  • Here we use the scanf() function  to get the input from the user. This means that we want to know if the input is a prime number.
  • A prime number is a type of number that can only be divided by 1 and the number itself. Therefore, we need to execute a while loop with the condition is running completely. When the loop is complete, it will be primed. Otherwise, it will be compound or non-prime.
  • The logic is written as while (z & lt; n). Here, the loop continues until the value of z equals 8.
  • Then we will use the `if` statement as well. If the condition is true, the "if" statement is executed.
  • Otherwise, the "else" part is executed.

Program 3:

C program to get the outputs of all prime numbers from 1 to 100:

#include <stdio.h>
int main()
{
  int q, p, c; 
  	printf("All the prime numbers from 1 to 100 are : ");


  for(p = 1; p <= 100; p++)
  {
    c = 0;
    for (q= 2; q <= p/2; q++)
    {
  	if(p%q== 0)
  	{
     	  c++;
  	  break;
	}
    }
    if(c == 0 && p!= 1 )
    {
	 printf(" %d ", p);
    }  
  }
  return 0;
}

Output:

All the prime numbers from 1 to 100 are :  2  3  5  7  11  13  17  19  23  29  31  37  41  43  47  53  59  61  67  71  73  79  83  89  97

Program 4:

C Program to print prime numbers between two given numbers:

#include <stdio.h>
int main() {
  int first , last, check;
   printf("Enter the two limits: ");
   scanf("%d %d", &first, &last);
   printf("The prime numbers which are in between of %d and %d are: ", first, last);


   // iteration will go on until first is not equal to last
   while (first < last) {
      check = 0;


      // ignore numbers less than 2
      if (first <= 1) {
         ++first;
         continue;
      }


      // if first is a non-prime number, check will be 1
      for (int j = 2; j <= first / 2; ++j) {


         if (first % j == 0) {
            check = 1;
            break;
         }
      }


      if (check == 0)
         printf("%d ", first);


      // to check the next number is prime or not
      // increase first by 1
      ++first;
   }
   return 0;
}

Output:

Enter the two limits: 5 15
The prime numbers which are in between of 5 and 15 are: 5 7 11 13

Related Topics

What is 2s Complement in C?

The complement of 2s in C is generated from the 1s in C. As we know, the 1s complement of a binary number is generated by converting bit 1 to...

4 minutes read.

How to use atoi() function in C

Introduction: The atoi() is a function used in C programming language. This function converts string characters to the integer value. The atoi() function converts the input string to the return type of...

4 minutes read.

Loop Statement in C

Loop statement is used to execute one or more statement repeatedly multiple times. There are three types of loops in C language. Why use loop? We can use loop because it executes a...

2 minutes read.

How to return a Pointer from a Function in C?

In the C programming language, pointers are variables that hold the address memory location of another variable. We could also input pointers to a function and return pointers from a...

3 minutes read.

Random Access - Lseek in C

Introduction lseek is a system call that is used to alter the location of the read/write pointer of a file descriptor. The lseek system call basically moves the current read/write location...

4 minutes read.

Bit Stuffing Program in C

What is a Bit Stuffing? The process of inserting one or more extra bits (0) into data is known as bit stuffing. To provide signalling information to a recipient, these are...

3 minutes read.

Pascal Triangle in C

The pascal triangle in c is an array of binomial coefficients in triangular form. Here the nth row contains the binomial coefficient of ncr.In a pascal triangle, every number is...

2 minutes read.

Multithreading in C interview questions

Q1. What exactly is a thread? Ans: A thread is a brief sequence of instructions intended to be planned and carried out by the CPU apart from the parent process. Q2. Can...

4 minutes read.

Conio.h in C

Header files are the source files with the extension of .h. In c language header files are referred to as the helping files and they contain definitions of various functions...

4 minutes read.

What is String Comparison in C

String comparison is the process of comparing two strings (sequences of characters) to determine if they are equal, or if one is greater or less than the other. The comparison...

4 minutes read.

Data Types in C

Data type is a very important concept in C programming language. Simply, “A data type is the classification of data values that a data item can have.” We need to...

11 minutes read.

Big O Notation in C

Big O Notation in C: In the C programming language, we have so many algorithms and solutions to the problems that exist, which have different aspects and purposes to an...

3 minutes read.

Types of Array in C

What is an Array? One value can be stored in a variable at once. How many variables will you need if you have 100 values? Well, the answer isn't 100. It...

14 minutes read.

C program that does not Suspend when Ctrl+Z is Pressed

In Programming when a program breakdown and runs surprisingly in the terminal compiler the developer has the ability to prevent the program from running unequivocally. For expressly halting the program,...

3 minutes read.

Find out Power without using POW function in C

Introduction: In this discussion, we will discuss how we find out power without using the POW function in C. In this article, you'll understand how to compute integer powers in...

3 minutes read.

Random function in C

Random function in C In the C programming language, the rand() is a function used for Pseudo Random Number Generator (PRNG). The random number generated by the rand() function is not...

4 minutes read.

Bar3d() function in C Graphics

The bar3d function is used to create a 2-dimensional filled-in rectangular bar. We can also create three-dimensional shapes in C using helpful function. The first step in creating this 3D...

3 minutes read.

abs() function in C

abs() function is a built-in function present in the stdlib.h header file. It returns an integer value. abs() function converts a negative value into a positive value. For example, if...

4 minutes read.

Caesar Cipher Program in C

What is Caesar Cipher? The Caesar Cipher is a type of substitution cipher that is named after Julius Caesar, who is said to have used it to encrypt messages sent to...

2 minutes read.

Addition of Matrix in C

The mathematical operation of includingor greater matrices is called the addition of matrices. A matrix is a square series of numbers, symbols, words, letters, and different things. In this article,...

3 minutes read.