Answers for "c program to check whether the entered number through the keyboard is prime or not"

C
2

Prime Number Check Program in C

#include <stdio.h> 

main() {
  int n, i, c = 0;
  printf("Enter any number n:");
  scanf("%d", &n);

  //logic
  for (i = 1; i <= n; i++) {
      if (n % i == 0) {
         c++;
      }
  }

  if (c == 2) {
  printf("n is a Prime number");
  }
  else {
  printf("n is not a Prime number");
  }
  return 0;    
}
Program Output:
Posted by: Guest on January-01-2022

Code answers related to "c program to check whether the entered number through the keyboard is prime or not"

Code answers related to "C"

Browse Popular Code Answers by Language