Skip to main content

Featured

C++ Program to Perform Linear Search on a Vector

  C++ Program to Perform Linear Search on a Vector Introduction In this C++ program, we will learn how to perform a Linear Search on a vector. The program first takes the size of the vector and its elements as input. Then it asks the user for the element to search. If the element is found, it displays the index where it is located. Otherwise, it displays a message indicating that the element is not found. C++ Program #include<bits/stdc++.h> using namespace std; int main() { int num, search, found = 0; cout << "Enter the size of the vector:" << endl; cin >> num; vector<int> v(num); cout << "Enter " << num << " elements in vector:" << endl; for(int i = 0; i < num; i++) { cin >> v[i]; } cout << "Enter element that you want to search:" << endl; cin >> search; for(int i = 0; i < num; i++) { ...

C Program: Prime Number Check

C Program: Prime Number Check

๐Ÿ”ท C Program: Prime Number Check

#include<stdio.h>
int main( )
{
    int num, count = 0;
    printf("Enter the number:\n");
    scanf("%d", &num);

    if(num <= 1)
    {
        printf("%d is not a prime number:\n", num);
    }
    else
    {
        for(int i = 2; i <= num / 2; i++)
        {
            if(num % i == 0)
            {
                count++;
                break;
            }
        }

        if(count == 0)
        {
            printf("%d is a prime number:\n", num);
        }
        else
        {
            printf("%d is not a prime number:\n", num);
        }
    }
}
  

๐Ÿ“˜ Explanation:

This C program checks if a number is prime or not.

๐Ÿ‘‰ A **prime number** is a number greater than 1 that is divisible only by 1 and itself.

๐Ÿ”ธ First, the user enters a number.
๐Ÿ”ธ If the number is less than or equal to 1, it's not prime.
๐Ÿ”ธ If the number is greater than 1, the program checks if it has any divisors (from 2 to num/2).
๐Ÿ”ธ If any divisor is found, `count` is incremented, and the loop breaks early for efficiency.
๐Ÿ”ธ Finally, if no divisors are found (`count == 0`), it's a prime number.

๐Ÿ” Sample Output:

Enter the number:
7
7 is a prime number:

Enter the number:
10
10 is not a prime number:

Enter the number:
1
1 is not a prime number:
    

๐Ÿท️ Keywords:

C program to check prime number, prime number logic in C, beginner C programs, isPrime function, modulus operator in C, number theory in C

Comments

Popular Posts

๐ŸŒ™